:root {
  --black: #050505;
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --line: #d5dde2;
  --muted: #3f474c;
  --muted-dark: #eef3f6;
  --yellow: #ffdc4f;
  --yellow-dark: #0b7fb0;
  --yellow-soft: #eaf7fc;
  --blue: #23a8df;
  --blue-dark: #087fb1;
  --teal: #16b8a6;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.brand img {
  width: 174px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(245, 245, 243, 0.74);
}

.desktop-nav a {
  padding: 9px 12px;
  color: #2f2f2d;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover {
  color: var(--paper);
  background: var(--blue);
}

.header-cta,
.btn,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.btn-dark {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.header-cta:hover,
.btn:hover,
.mobile-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.mobile-nav {
  display: none;
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.page-hero {
  padding: clamp(78px, 10vw, 132px) 0 clamp(56px, 8vw, 92px);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 720px;
  color: #eef3f6;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 800;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.section-dark {
  color: var(--paper);
  background: var(--black);
}

.section-muted {
  background: #f4f9fb;
}

.hero {
  min-height: calc(100vh - 84px);
  padding: clamp(28px, 3vw, 38px) 0;
  border-bottom: 1px solid #edf1f2;
}

.hero-light {
  color: var(--paper);
  background: var(--black);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-dark .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.6vw, 5.65rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5.2vw, 4.75rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

.hero-lede,
.section-heading p,
.split p,
.final-cta p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.section-dark .hero-lede,
.section-dark .split p,
.final-cta p {
  color: #eef3f6;
}

.hero-light .hero-lede {
  max-width: 760px;
  color: #f2f7fa;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  font-weight: 650;
  line-height: 1.42;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 32px;
  color: #eef3f6;
  font-weight: 800;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 5px;
}

.hero-points li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.43em;
  width: 6px;
  height: 10px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

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

.btn-light {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn-primary {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.video-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--paper);
  font-weight: 800;
}

.video-link::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
}

.video-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: -21px;
  margin-right: 13px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--paper);
  pointer-events: none;
}

.btn-outline-light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.btn-outline-light:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.hero-panel {
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #101010;
}

.hero-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.metric-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.metric-grid div,
.ai-panel,
.process-card,
.service-card,
.why-grid div,
.testimonial-card,
.problem-grid div {
  border: 1px solid var(--line);
  background: var(--paper);
}

.metric-grid div {
  padding: 18px;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(2.72rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  z-index: 0;
  white-space: nowrap;
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: 0.05em;
  bottom: 0.12em;
  z-index: -1;
  height: 0.22em;
  background: #ffdc4f;
}

.hero-copy .eyebrow {
  color: var(--yellow);
}

.hero-visual {
  position: relative;
  min-height: min(500px, calc(100vh - 150px));
}

.hero-circle {
  position: absolute;
  right: 8%;
  top: 3%;
  width: min(415px, 74%);
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 42% 58% 54% 46% / 44% 38% 62% 56%;
  transform: rotate(-7deg);
}

.hero-plumber,
.hero-photo {
  position: absolute;
  z-index: 2;
}

.hero-plumber {
  object-fit: contain;
}

.hero-plumber-main {
  right: 19%;
  bottom: 0;
  width: min(360px, 58%);
  max-height: min(485px, calc(100vh - 170px));
}

.hero-photo {
  right: 8%;
  bottom: 4%;
  width: min(520px, 86%);
  height: min(430px, calc(100vh - 180px));
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.floating-badge,
.hero-stat-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  color: var(--black);
  background: #ffdc4f;
  box-shadow: 0 22px 46px rgba(35, 168, 223, 0.18);
  font-weight: 850;
}

.floating-badge::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
}

.floating-badge::after {
  content: "";
  position: absolute;
  left: 25px;
  width: 6px;
  height: 10px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.badge-top {
  right: 0;
  top: 16%;
}

.badge-bottom {
  left: 4%;
  bottom: 26%;
  color: var(--black);
  background: var(--yellow);
}

.metric-grid span,
.process-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-grid p,
.process-card p,
.service-card p,
.why-grid p,
.testimonial-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.center {
  text-align: center;
}

.center h2,
.center p {
  margin-left: auto;
  margin-right: auto;
}

.process-grid,
.service-grid,
.why-grid,
.testimonial-grid,
.problem-grid {
  display: grid;
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid,
.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card,
.service-card,
.why-grid div,
.testimonial-card,
.problem-grid div {
  padding: clamp(22px, 3vw, 34px);
}

.problem-grid {
  grid-template-columns: repeat(5, 1fr);
}

.problem-grid div {
  color: var(--ink);
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-stack > img,
.visual-banner img,
.page-image img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.visual-banner {
  margin: -18px 0 28px;
}

.visual-banner img {
  max-height: 420px;
  border-color: rgba(35, 168, 223, 0.28);
}

.cutout-stack > img,
.cutout-page-image img {
  min-height: 0;
  max-height: 460px;
  object-fit: contain;
  background: #eaf7fc;
  border-color: transparent;
  box-shadow: none;
}

.cutout-panel {
  background: #eaf7fc;
}

.feature-list div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 800;
}

.feature-list.compact {
  grid-template-columns: repeat(2, 1fr);
}

.ai-panel {
  min-height: 390px;
  padding: 24px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.ai-panel img {
  width: 100%;
  height: 300px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}

.ai-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 88px;
  color: var(--blue);
  border: 1px solid rgba(35, 168, 223, 0.52);
  font-size: 1.8rem;
  font-weight: 950;
}

.ai-panel p {
  color: var(--muted);
}

.testimonial-card {
  min-height: 190px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.testimonial-card span {
  display: block;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: -16px auto 30px;
  padding: 18px 20px;
  border: 1px solid #dadce0;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.1);
}

.google-word {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.google-word span:nth-child(1),
.google-word span:nth-child(4) {
  color: #4285f4;
}

.google-word span:nth-child(2),
.google-word span:nth-child(6) {
  color: #ea4335;
}

.google-word span:nth-child(3) {
  color: #fbbc05;
}

.google-word span:nth-child(5) {
  color: #34a853;
}

.stars {
  display: inline-flex;
  align-items: center;
  color: #fbbc05;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.review-carousel {
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid #dadce0;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.12);
}

.review-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.review-carousel-head strong,
.review-carousel-head span {
  display: block;
}

.review-carousel-head strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.review-carousel-head span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-controls {
  display: flex;
  gap: 8px;
}

.review-controls button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid #c8e6f1;
  background: var(--paper);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.review-controls button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.review-controls button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.review-controls button:hover::before {
  border-color: var(--paper);
}

.review-controls [data-review-prev]::before {
  transform: rotate(45deg);
}

.review-controls [data-review-next]::before {
  transform: rotate(225deg);
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms ease;
  will-change: transform;
}

.review-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 315px;
  padding-top: 28px;
  border-color: #dadce0;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.12);
}

.review-card::after {
  content: none;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: #4285f4;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 0;
}

.review-head strong,
.review-head small {
  display: block;
  margin: 0;
}

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

.google-card-word {
  display: inline-flex !important;
  align-items: center;
  margin: 0 0 0 auto !important;
  font-size: 0.95rem !important;
  font-weight: 900;
  letter-spacing: 0;
}

.google-card-word span {
  display: inline !important;
  margin: 0 !important;
  color: inherit;
  font-size: inherit !important;
}

.google-card-word span:nth-child(1),
.google-card-word span:nth-child(4) {
  color: #4285f4;
}

.google-card-word span:nth-child(2),
.google-card-word span:nth-child(6) {
  color: #ea4335;
}

.google-card-word span:nth-child(3) {
  color: #fbbc05;
}

.google-card-word span:nth-child(5) {
  color: #34a853;
}

.review-avatar {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  color: var(--paper) !important;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(35, 168, 223, 0.22);
}

.review-card .stars {
  display: inline-flex;
  margin-top: 18px;
  color: #fbbc05;
}

.review-card p {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 760;
}

.review-card > span:last-child {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 8px 10px;
  color: var(--blue-dark);
  background: #eaf7fc;
  font-size: 0.82rem;
  font-weight: 900;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b7d9e6;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.review-dot.is-active {
  width: 28px;
  background: var(--blue);
}

.final-cta {
  text-align: center;
  color: var(--paper);
  background: var(--black);
}

.final-cta h2 {
  margin: 0 auto;
}

.contact-placeholders {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  color: #c9c9c2;
  font-size: 0.94rem;
}

.contact-placeholders span {
  padding: 10px 14px;
  border: 1px solid rgba(35, 168, 223, 0.32);
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--paper);
  background: #080808;
  border-top: 1px solid #202020;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer img {
  width: 176px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  filter: invert(1);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer a,
.site-footer p,
.footer-bottom {
  display: block;
  margin: 0 0 10px;
  color: #c3c3bd;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid #242424;
}

.home-float,
.whatsapp-float {
  position: fixed;
  bottom: clamp(14px, 3vw, 28px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--paper) !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  font-size: 0;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float {
  right: clamp(14px, 3vw, 28px);
  background: #25d366;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 30px;
  height: 30px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.05 3.2A12.64 12.64 0 0 0 5.22 22.4L3.6 28.8l6.56-1.54A12.65 12.65 0 1 0 16.05 3.2Zm0 2.38a10.27 10.27 0 1 1-5.24 19.1l-.5-.3-3.53.84.87-3.39-.33-.53A10.27 10.27 0 0 1 16.05 5.58Zm-3.43 5.18c-.25-.6-.5-.62-.74-.63h-.63c-.22 0-.58.08-.88.4-.3.33-1.15 1.12-1.15 2.74s1.18 3.18 1.35 3.4c.17.22 2.28 3.65 5.63 4.96 2.78 1.1 3.35.88 3.95.82.6-.05 1.95-.8 2.23-1.56.28-.77.28-1.43.2-1.57-.08-.13-.3-.22-.63-.38-.33-.17-1.95-.96-2.25-1.07-.3-.11-.52-.16-.74.17-.22.33-.85 1.07-1.04 1.29-.2.22-.38.25-.71.08-.33-.16-1.4-.52-2.67-1.65-.99-.88-1.65-1.96-1.85-2.29-.2-.33-.02-.51.15-.68.15-.15.33-.38.5-.57.16-.2.22-.33.33-.55.11-.22.05-.41-.03-.57-.08-.17-.72-1.78-1.02-2.34Z'/%3E%3C/svg%3E");
}

.home-float {
  left: clamp(14px, 3vw, 28px);
  background: var(--black);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.home-float::before {
  content: "";
  width: 15px;
  height: 15px;
  border-left: 3px solid var(--paper);
  border-bottom: 3px solid var(--paper);
  transform: rotate(45deg);
  margin-left: 6px;
}

.home-float:hover,
.whatsapp-float:hover {
  color: var(--paper);
  transform: translateY(-2px);
}

.home-float:hover {
  background: var(--blue);
  box-shadow: 0 22px 54px rgba(35, 168, 223, 0.28);
}

.whatsapp-float:hover {
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.34);
}

.animate-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--delay, 0ms);
}

.animate-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual.animate-ready,
.visual-stack.animate-ready,
.visual-banner.animate-ready,
.page-image.animate-ready,
.ai-panel.animate-ready {
  transform: translateY(18px) scale(0.98);
}

.hero-visual.animate-ready.is-visible,
.visual-stack.animate-ready.is-visible,
.visual-banner.animate-ready.is-visible,
.page-image.animate-ready.is-visible,
.ai-panel.animate-ready.is-visible {
  transform: translateY(0) scale(1);
}

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

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

  .animate-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 14px 4px;
    font-weight: 800;
  }

  .mobile-cta {
    color: var(--black);
    background: var(--yellow);
  }

  .hero-grid,
  .split,
  .reverse,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-circle {
    right: 15%;
    width: min(430px, 68%);
  }

  .hero-plumber-main {
    right: 26%;
    width: min(330px, 50%);
  }

  .hero-photo {
    right: 6%;
    width: min(560px, 88%);
  }

  .process-grid,
  .service-grid,
  .why-grid,
  .testimonial-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand img {
    width: 148px;
    height: 42px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(2.75rem, 12.5vw, 3.55rem);
  }

  .hero-light .hero-lede {
    font-size: clamp(1.02rem, 4.8vw, 1.2rem);
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 28px;
  }

  .hero-circle {
    right: 4%;
    top: 10%;
    width: 78%;
  }

  .hero-plumber-main {
    right: 24%;
    width: 50%;
    max-height: 335px;
  }

  .hero-photo {
    right: 0;
    bottom: 8%;
    width: 100%;
    height: 300px;
  }

  .floating-badge,
  .hero-stat-card {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .badge-top {
    right: 0;
    top: 18%;
  }

  .badge-bottom {
    left: 0;
    bottom: 22%;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .btn,
  .mobile-cta {
    min-height: 50px;
  }

  .process-grid,
  .service-grid,
  .why-grid,
  .testimonial-grid,
  .problem-grid,
  .feature-list.compact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ai-panel {
    min-height: 320px;
  }

  .ai-panel img {
    height: 230px;
  }

  .contact-placeholders {
    align-items: stretch;
    flex-direction: column;
  }

  .review-summary {
    align-items: stretch;
    justify-content: flex-start;
  }

  .review-summary .btn {
    width: 100%;
  }

  .review-carousel {
    padding: 16px;
  }

  .review-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 285px;
  }

  .home-float,
  .whatsapp-float {
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .home-float {
    left: 14px;
  }

  .whatsapp-float {
    right: 14px;
  }
}


/* UI polish: clean icons, stronger contrast, and motion */
:root {
  --icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4.2-4.2'/%3E%3C/svg%3E");
  --icon-message: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E");
  --icon-trend: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17 9 11l4 4 8-8'/%3E%3Cpath d='M15 7h6v6'/%3E%3C/svg%3E");
  --icon-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
  --icon-wrench: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5.4 5.4L3 18v3h3l6.3-6.3a4 4 0 0 0 5.4-5.4l-3 3-3-3 3-3Z'/%3E%3C/svg%3E");
  --icon-clock: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  --icon-home: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M10 20v-6h4v6'/%3E%3C/svg%3E");
  --icon-briefcase: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 6V5a2 2 0 0 1 2-2h0a2 2 0 0 1 2 2v1'/%3E%3Crect x='3' y='6' width='18' height='14' rx='2'/%3E%3Cpath d='M3 12h18'/%3E%3C/svg%3E");
  --icon-calendar: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3C/svg%3E");
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.04);
}

.desktop-nav a,
.mobile-nav a,
.header-cta,
.btn,
.video-link {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta::before,
.mobile-cta::before,
.btn::before,
.video-link::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 9px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon-message) center / contain no-repeat;
  mask: var(--icon-message) center / contain no-repeat;
}

.btn-primary::before {
  -webkit-mask-image: var(--icon-calendar);
  mask-image: var(--icon-calendar);
}

.video-link::before {
  background: var(--blue);
  -webkit-mask-image: var(--icon-trend);
  mask-image: var(--icon-trend);
  border-radius: 0;
}

.video-link::after {
  display: none;
}

.hero-copy,
.hero-visual {
  will-change: transform, opacity;
}

.hero-circle {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 30px 90px rgba(35, 168, 223, 0.26);
  animation: heroPulse 7s ease-in-out infinite;
}

.hero-plumber-main {
  animation: heroFloat 5.8s ease-in-out infinite;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.28));
}

.floating-badge {
  border: 1px solid rgba(5, 5, 5, 0.08);
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.badge-bottom {
  animation-delay: 600ms;
}

.problem-grid div,
.feature-list div,
.service-card,
.process-card,
.why-grid div,
.testimonial-card,
.contact-card,
.plain-list li,
.ai-panel {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.problem-grid div:hover,
.feature-list div:hover,
.service-card:hover,
.process-card:hover,
.why-grid div:hover,
.testimonial-card:hover,
.contact-card:hover,
.plain-list li:hover,
.ai-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 168, 223, 0.42);
  box-shadow: 0 18px 46px rgba(13, 35, 45, 0.1);
}

.service-card::before,
.process-card::before,
.why-grid div::before,
.problem-grid div::before,
.feature-list div::before,
.plain-list li::before {
  content: "";
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(35, 168, 223, 0.18);
  -webkit-mask: var(--icon-search) center / 21px 21px no-repeat, linear-gradient(#000 0 0);
  mask: var(--icon-search) center / 21px 21px no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

.feature-list div,
.problem-grid div,
.plain-list li {
  display: grid;
  align-content: start;
}

.feature-list div::before,
.problem-grid div::before,
.plain-list li::before {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.problem-grid div:nth-child(1)::before,
.service-card:nth-child(1)::before,
.feature-list div:nth-child(1)::before {
  -webkit-mask-image: var(--icon-search), linear-gradient(#000 0 0);
  mask-image: var(--icon-search), linear-gradient(#000 0 0);
}

.problem-grid div:nth-child(2)::before,
.service-card:nth-child(2)::before,
.feature-list div:nth-child(2)::before {
  -webkit-mask-image: var(--icon-message), linear-gradient(#000 0 0);
  mask-image: var(--icon-message), linear-gradient(#000 0 0);
}

.problem-grid div:nth-child(3)::before,
.service-card:nth-child(3)::before,
.feature-list div:nth-child(3)::before {
  -webkit-mask-image: var(--icon-shield), linear-gradient(#000 0 0);
  mask-image: var(--icon-shield), linear-gradient(#000 0 0);
}

.problem-grid div:nth-child(4)::before,
.service-card:nth-child(4)::before,
.feature-list div:nth-child(4)::before {
  -webkit-mask-image: var(--icon-trend), linear-gradient(#000 0 0);
  mask-image: var(--icon-trend), linear-gradient(#000 0 0);
}

.problem-grid div:nth-child(5)::before {
  -webkit-mask-image: var(--icon-home), linear-gradient(#000 0 0);
  mask-image: var(--icon-home), linear-gradient(#000 0 0);
}

.process-card:nth-child(1)::before {
  -webkit-mask-image: var(--icon-calendar), linear-gradient(#000 0 0);
  mask-image: var(--icon-calendar), linear-gradient(#000 0 0);
}

.process-card:nth-child(2)::before {
  -webkit-mask-image: var(--icon-wrench), linear-gradient(#000 0 0);
  mask-image: var(--icon-wrench), linear-gradient(#000 0 0);
}

.process-card:nth-child(3)::before {
  -webkit-mask-image: var(--icon-trend), linear-gradient(#000 0 0);
  mask-image: var(--icon-trend), linear-gradient(#000 0 0);
}

.why-grid div:nth-child(1)::before,
.plain-list li:nth-child(1)::before {
  -webkit-mask-image: var(--icon-clock), linear-gradient(#000 0 0);
  mask-image: var(--icon-clock), linear-gradient(#000 0 0);
}

.why-grid div:nth-child(2)::before,
.plain-list li:nth-child(2)::before {
  -webkit-mask-image: var(--icon-home), linear-gradient(#000 0 0);
  mask-image: var(--icon-home), linear-gradient(#000 0 0);
}

.why-grid div:nth-child(3)::before,
.plain-list li:nth-child(3)::before {
  -webkit-mask-image: var(--icon-briefcase), linear-gradient(#000 0 0);
  mask-image: var(--icon-briefcase), linear-gradient(#000 0 0);
}

.why-grid div:nth-child(4)::before,
.plain-list li:nth-child(n+4)::before {
  -webkit-mask-image: var(--icon-wrench), linear-gradient(#000 0 0);
  mask-image: var(--icon-wrench), linear-gradient(#000 0 0);
}

.service-card h3,
.process-card h3,
.why-grid h3,
.ai-panel h3 {
  margin-top: 4px;
}

.section-heading p,
.split p,
.hero-lede,
.metric-grid p,
.process-card p,
.service-card p,
.why-grid p,
.testimonial-card p,
.contact-card p,
.site-footer p,
.review-carousel-head span,
.review-head small {
  color: var(--muted);
}

.section-dark .split p,
.section-dark .hero-lede,
.section-dark .ai-panel p {
  color: #1f2a30;
}

.section-dark > .container > div:not(.ai-panel) p,
.section-dark .split > div:not(.ai-panel) p {
  color: #f2f7fa;
}

.visual-stack > img,
.visual-banner img,
.page-image img,
.ai-panel img {
  transition: transform 450ms ease, filter 450ms ease;
}

.visual-stack:hover > img,
.visual-banner:hover img,
.page-image:hover img,
.ai-panel:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.animate-ready {
  transition-duration: 720ms;
  transition-timing-function: cubic-bezier(0.2, 0.75, 0.2, 1);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroPulse {
  0%, 100% { transform: rotate(-7deg) scale(1); }
  50% { transform: rotate(-3deg) scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-circle,
  .hero-plumber-main,
  .floating-badge {
    animation: none !important;
  }
}


/* Icon chip rendering fixes */
.service-card,
.process-card,
.why-grid div,
.problem-grid div,
.feature-list div,
.plain-list li {
  --card-icon: var(--icon-search);
}

.service-card::before,
.process-card::before,
.why-grid div::before,
.problem-grid div::before,
.feature-list div::before,
.plain-list li::before {
  -webkit-mask: none !important;
  mask: none !important;
}

.service-card::after,
.process-card::after,
.why-grid div::after,
.problem-grid div::after,
.feature-list div::after,
.plain-list li::after {
  content: "";
  position: absolute;
  left: clamp(22px, 3vw, 34px);
  top: clamp(22px, 3vw, 34px);
  width: 20px;
  height: 20px;
  background: var(--paper);
  -webkit-mask: var(--card-icon) center / contain no-repeat;
  mask: var(--card-icon) center / contain no-repeat;
  pointer-events: none;
}

.feature-list div::after,
.problem-grid div::after,
.plain-list li::after {
  left: 26px;
  top: 24px;
  width: 17px;
  height: 17px;
}

.problem-grid div:nth-child(1),
.service-card:nth-child(1),
.feature-list div:nth-child(1) { --card-icon: var(--icon-search); }
.problem-grid div:nth-child(2),
.service-card:nth-child(2),
.feature-list div:nth-child(2) { --card-icon: var(--icon-message); }
.problem-grid div:nth-child(3),
.service-card:nth-child(3),
.feature-list div:nth-child(3) { --card-icon: var(--icon-shield); }
.problem-grid div:nth-child(4),
.service-card:nth-child(4),
.feature-list div:nth-child(4) { --card-icon: var(--icon-trend); }
.problem-grid div:nth-child(5) { --card-icon: var(--icon-home); }
.process-card:nth-child(1) { --card-icon: var(--icon-calendar); }
.process-card:nth-child(2) { --card-icon: var(--icon-wrench); }
.process-card:nth-child(3) { --card-icon: var(--icon-trend); }
.why-grid div:nth-child(1), .plain-list li:nth-child(1) { --card-icon: var(--icon-clock); }
.why-grid div:nth-child(2), .plain-list li:nth-child(2) { --card-icon: var(--icon-home); }
.why-grid div:nth-child(3), .plain-list li:nth-child(3) { --card-icon: var(--icon-briefcase); }
.why-grid div:nth-child(4), .plain-list li:nth-child(n+4) { --card-icon: var(--icon-wrench); }


/* Requested refinements: yellow icons and Search Console graph panels */
.service-card::before,
.process-card::before,
.why-grid div::before,
.problem-grid div::before,
.feature-list div::before,
.plain-list li::before {
  background: var(--yellow) !important;
  box-shadow: 0 14px 30px rgba(255, 220, 79, 0.28) !important;
}

.service-card::after,
.process-card::after,
.why-grid div::after,
.problem-grid div::after,
.feature-list div::after,
.plain-list li::after {
  background: var(--black) !important;
}

.header-cta::before,
.mobile-cta::before,
.btn::before,
.video-link::before {
  background: var(--yellow);
}

.header-cta::before,
.mobile-cta::before,
.btn-dark::before,
.btn-light::before {
  background: var(--black);
}

.search-console-panel {
  min-height: 430px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  border: 1px solid rgba(35, 168, 223, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.search-console-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 220, 79, 0.8);
  box-shadow: 0 28px 78px rgba(35, 168, 223, 0.18);
}

.search-console-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(255, 220, 79, 0.28), transparent 32%);
  pointer-events: none;
}

.gsc-topbar,
.gsc-metrics,
.gsc-chart,
.search-console-panel h3,
.search-console-panel p {
  position: relative;
  z-index: 1;
}

.gsc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: #263238;
  font-size: 0.9rem;
  font-weight: 800;
}

.gsc-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gsc-topbar span::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: conic-gradient(from 0deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.gsc-topbar strong {
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gsc-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.gsc-metrics div {
  min-height: 82px;
  padding: 12px;
  border: 1px solid #dde8ee;
  background: var(--paper);
}

.gsc-metrics span {
  display: block;
  color: #40505a;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gsc-metrics strong {
  display: block;
  margin-top: 7px;
  color: var(--black);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
}

.gsc-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 170px;
  margin-bottom: 24px;
  padding: 18px 16px 12px;
  border: 1px solid #dce9ef;
  background:
    linear-gradient(to top, rgba(35, 168, 223, 0.14) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(180deg, #ffffff, #eef9fc);
}

.gsc-chart::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 34px;
  height: 82px;
  background: linear-gradient(135deg, transparent 0 12%, rgba(35, 168, 223, 0.92) 12% 15%, transparent 15% 27%, rgba(35, 168, 223, 0.92) 27% 30%, transparent 30% 44%, rgba(35, 168, 223, 0.92) 44% 47%, transparent 47% 64%, rgba(35, 168, 223, 0.92) 64% 67%, transparent 67%);
  clip-path: polygon(0 68%, 16% 54%, 31% 61%, 48% 34%, 65% 42%, 82% 18%, 100% 9%, 100% 16%, 82% 25%, 65% 49%, 48% 41%, 31% 68%, 16% 61%, 0 75%);
}

.gsc-chart span {
  flex: 1;
  min-width: 0;
  background: linear-gradient(180deg, var(--yellow), #f5b700);
  border: 1px solid rgba(0, 0, 0, 0.08);
  animation: graphGrow 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.gsc-chart span:nth-child(1) { height: 34%; animation-delay: 80ms; }
.gsc-chart span:nth-child(2) { height: 48%; animation-delay: 140ms; }
.gsc-chart span:nth-child(3) { height: 42%; animation-delay: 200ms; }
.gsc-chart span:nth-child(4) { height: 66%; animation-delay: 260ms; }
.gsc-chart span:nth-child(5) { height: 58%; animation-delay: 320ms; }
.gsc-chart span:nth-child(6) { height: 82%; animation-delay: 380ms; }
.gsc-chart span:nth-child(7) { height: 74%; animation-delay: 440ms; }

.search-console-panel p {
  color: #263238;
}

.contact-plumber {
  display: grid;
  place-items: end center;
  background: #eaf7fc;
  border: 1px solid rgba(35, 168, 223, 0.18);
}

.contact-plumber img {
  width: min(440px, 100%);
  min-height: 0;
  max-height: 520px;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 28px rgba(5, 5, 5, 0.2));
}

@keyframes graphGrow {
  from { transform: scaleY(0.1); opacity: 0.35; transform-origin: bottom; }
  to { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
}

@media (max-width: 640px) {
  .gsc-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .gsc-chart {
    height: 140px;
  }
}


.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.final-cta-plumber {
  width: min(360px, 100%);
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.32));
  animation: heroFloat 6.2s ease-in-out infinite;
}

@media (max-width: 780px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-plumber {
    width: min(300px, 82vw);
  }
}


/* Contact page light treatment */
.contact-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 220, 79, 0.42), transparent 28%),
    linear-gradient(180deg, #f6fbfd 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(35, 168, 223, 0.16);
}

.contact-hero .eyebrow {
  color: var(--blue-dark);
}

.contact-hero p {
  color: #2f3d44;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
}

.contact-section .detail-grid {
  align-items: center;
}

.contact-card {
  border-color: rgba(35, 168, 223, 0.22);
  box-shadow: 0 24px 70px rgba(13, 35, 45, 0.1);
}

.contact-card h3::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  vertical-align: -8px;
  border-radius: 11px;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 220, 79, 0.3);
}

.contact-card a:not(.btn) {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-plumber {
  background:
    radial-gradient(circle at 55% 45%, rgba(35, 168, 223, 0.18), transparent 38%),
    #eaf7fc;
}


/* Home page contact CTA light version */
.final-cta {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 220, 79, 0.4), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
  border-top: 1px solid rgba(35, 168, 223, 0.16);
  border-bottom: 1px solid rgba(35, 168, 223, 0.16);
}

.final-cta .eyebrow {
  color: var(--blue-dark);
}

.final-cta h2,
.final-cta p {
  color: var(--ink);
}

.final-cta .btn-light {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.final-cta .btn-outline-light {
  color: var(--black);
  background: var(--paper);
  border-color: rgba(35, 168, 223, 0.32);
}

.final-cta .btn-outline-light:hover {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.final-cta .contact-placeholders span {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(35, 168, 223, 0.2);
  box-shadow: 0 12px 34px rgba(13, 35, 45, 0.08);
}

.final-cta-plumber {
  background: radial-gradient(circle at 50% 55%, rgba(35, 168, 223, 0.16), transparent 48%);
}

/* Terms gate and solid color card refinements */
body.terms-gate-open {
  overflow: hidden;
}

.terms-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.64);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.terms-gate.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.terms-gate__panel {
  position: relative;
  width: min(100%, 640px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--yellow);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.terms-gate.is-open .terms-gate__panel {
  transform: translateY(0) scale(1);
}

.terms-gate__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--black);
  cursor: pointer;
}

.terms-gate__close::before,
.terms-gate__close::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 20px;
  height: 2px;
  background: var(--yellow);
}

.terms-gate__close::before {
  transform: rotate(45deg);
}

.terms-gate__close::after {
  transform: rotate(-45deg);
}

.terms-gate__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.terms-gate h2 {
  max-width: 13ch;
  margin: 0 54px 14px 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.96;
}

.terms-gate p {
  margin: 0 0 16px;
  color: #20282d;
  font-weight: 650;
}

.terms-gate__list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.terms-gate__list li {
  position: relative;
  padding-left: 30px;
  color: #26343a;
  font-weight: 700;
}

.terms-gate__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  box-shadow: 6px 6px 0 var(--yellow);
}

.terms-gate__check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  padding: 16px;
  color: var(--paper);
  background: var(--black);
  font-weight: 850;
  cursor: pointer;
}

.terms-gate__check input {
  width: 22px;
  height: 22px;
  accent-color: var(--yellow);
}

.terms-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.terms-gate__actions .btn {
  min-width: 150px;
}

.terms-gate__actions .btn-outline-light {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.terms-gate__actions .btn-primary {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.terms-gate__actions .btn-primary:disabled {
  color: #5c6468;
  background: #dce4e8;
  border-color: #dce4e8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.service-card:nth-child(1),
.problem-grid div:nth-child(1),
.why-grid div:nth-child(1),
.process-card:nth-child(1) {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.service-card:nth-child(2),
.problem-grid div:nth-child(2),
.why-grid div:nth-child(2),
.process-card:nth-child(2) {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.service-card:nth-child(3),
.problem-grid div:nth-child(3),
.why-grid div:nth-child(3),
.process-card:nth-child(3) {
  color: var(--paper);
  background: var(--black);
  border-color: var(--black);
}

.service-card:nth-child(4),
.problem-grid div:nth-child(4),
.why-grid div:nth-child(4),
.problem-grid div:nth-child(5) {
  color: var(--black);
  background: #f2f7fa;
  border: 2px solid var(--black);
}

.service-card:nth-child(1) p,
.problem-grid div:nth-child(1) p,
.why-grid div:nth-child(1) p,
.process-card:nth-child(1) p,
.service-card:nth-child(4) p,
.problem-grid div:nth-child(4) p,
.why-grid div:nth-child(4) p,
.problem-grid div:nth-child(5) p {
  color: #1c2529;
}

.service-card:nth-child(2) p,
.problem-grid div:nth-child(2) p,
.why-grid div:nth-child(2) p,
.process-card:nth-child(2) p,
.service-card:nth-child(3) p,
.problem-grid div:nth-child(3) p,
.why-grid div:nth-child(3) p,
.process-card:nth-child(3) p {
  color: #f6fbff;
}

.service-card:nth-child(2)::before,
.problem-grid div:nth-child(2)::before,
.why-grid div:nth-child(2)::before,
.process-card:nth-child(2)::before,
.service-card:nth-child(3)::before,
.problem-grid div:nth-child(3)::before,
.why-grid div:nth-child(3)::before,
.process-card:nth-child(3)::before {
  background: var(--yellow) !important;
  box-shadow: none !important;
}

.service-card:nth-child(1)::before,
.problem-grid div:nth-child(1)::before,
.why-grid div:nth-child(1)::before,
.process-card:nth-child(1)::before,
.service-card:nth-child(4)::before,
.problem-grid div:nth-child(4)::before,
.why-grid div:nth-child(4)::before,
.problem-grid div:nth-child(5)::before {
  background: var(--black) !important;
  box-shadow: none !important;
}

.service-card:nth-child(1)::after,
.problem-grid div:nth-child(1)::after,
.why-grid div:nth-child(1)::after,
.process-card:nth-child(1)::after,
.service-card:nth-child(4)::after,
.problem-grid div:nth-child(4)::after,
.why-grid div:nth-child(4)::after,
.problem-grid div:nth-child(5)::after {
  background: var(--yellow) !important;
}

.service-card:nth-child(2)::after,
.problem-grid div:nth-child(2)::after,
.why-grid div:nth-child(2)::after,
.process-card:nth-child(2)::after,
.service-card:nth-child(3)::after,
.problem-grid div:nth-child(3)::after,
.why-grid div:nth-child(3)::after,
.process-card:nth-child(3)::after {
  background: var(--black) !important;
}

@media (max-width: 640px) {
  .terms-gate {
    padding: 14px;
  }

  .terms-gate__panel {
    max-height: calc(100vh - 28px);
  }

  .terms-gate h2 {
    margin-right: 44px;
  }

  .terms-gate__actions {
    display: grid;
  }
}


/* === ICON UX FIXES + LIVE ANIMATIONS === */

/* Center icon (::after) within its badge (::before)
   38×38 badge, 20×20 icon → (38−20)/2 = 9px centering offset */
.service-card::after,
.process-card::after,
.why-grid div::after {
  left: calc(clamp(22px, 3vw, 34px) + 9px);
  top: calc(clamp(22px, 3vw, 34px) + 9px);
}

/* 32×32 badge, clamp padding, 17×17 icon → (32−17)/2 = 7.5 → 8px */
.problem-grid div::after {
  left: calc(clamp(22px, 3vw, 34px) + 8px);
  top: calc(clamp(22px, 3vw, 34px) + 8px);
}

/* 32×32 badge, 20px/18px fixed padding, 17×17 icon → 20+8 = 28, 18+8 = 26 */
.feature-list div::after,
.plain-list li::after {
  left: 28px;
  top: 26px;
}

/* Spring-easing transition on badges and icons */
.service-card::before,
.process-card::before,
.why-grid div::before,
.problem-grid div::before,
.feature-list div::before,
.plain-list li::before {
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card::after,
.process-card::after,
.why-grid div::after,
.problem-grid div::after,
.feature-list div::after,
.plain-list li::after {
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Badge hover: spring scale + slight tilt */
.service-card:hover::before,
.process-card:hover::before,
.why-grid div:hover::before {
  transform: scale(1.22) rotate(-5deg);
}

.problem-grid div:hover::before,
.feature-list div:hover::before,
.plain-list li:hover::before {
  transform: scale(1.16) rotate(-5deg);
}

/* Icon hover: scale up in place */
.service-card:hover::after,
.process-card:hover::after,
.why-grid div:hover::after {
  transform: scale(1.14);
}

.problem-grid div:hover::after,
.feature-list div:hover::after,
.plain-list li:hover::after {
  transform: scale(1.1);
}

/* Continuous brightness pulse on feature-list badges (staggered) */
@keyframes badgePulse {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.28); }
}

.feature-list div::before {
  animation: badgePulse 2.8s ease-in-out infinite;
}
.feature-list div:nth-child(2)::before { animation-delay: 700ms; }
.feature-list div:nth-child(3)::before { animation-delay: 1400ms; }
.feature-list div:nth-child(4)::before { animation-delay: 2100ms; }

/* WhatsApp floating button pulse ring */
@keyframes whatsappRing {
  0%  { box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28), 0 0 0 0   rgba(37, 211, 102, 0.52); }
  65% { box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28), 0 0 0 20px rgba(37, 211, 102, 0); }
  100%{ box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28), 0 0 0 0   rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: whatsappRing 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  animation: none;
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.34);
}

/* Periodic icon wiggle on header CTA button */
@keyframes iconWiggle {
  0%, 72%, 100% { transform: rotate(0deg)  scale(1);    }
  76%           { transform: rotate(-14deg) scale(1.12); }
  82%           { transform: rotate(10deg)  scale(1.10); }
  88%           { transform: rotate(-7deg)  scale(1.05); }
  94%           { transform: rotate(4deg)   scale(1.02); }
}

.header-cta::before {
  animation: iconWiggle 5s ease-in-out infinite;
  animation-delay: 3s;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .feature-list div::before,
  .whatsapp-float,
  .header-cta::before {
    animation: none !important;
  }
}


/* === HERO SOLID BACKGROUNDS + LOGO WATERMARKS === */

/* Establish stacking context so z-index: -1 watermark stays above background
   but below all page content */
.hero,
.page-hero {
  position: relative;
  isolation: isolate;
}

/* White logo watermark on dark hero sections */
.hero-light::before,
.page-hero.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/vannexo-media-logo-white.webp");
  background-size: 220px auto;
  background-repeat: repeat;
  opacity: 0.28;
  pointer-events: none;
}

/* Page hero split — cutout plumber visual, matches main hero style */
.page-hero .split {
  align-items: end;
}

.page-hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
}

.page-hero-visual img {
  width: min(300px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.3));
  animation: heroFloat 5.8s ease-in-out infinite;
}

@media (max-width: 980px) {
  .page-hero-visual {
    display: none;
  }
}

/* Contact hero: solid dark background to match all other heroes */
.contact-hero {
  color: var(--paper);
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.contact-hero .eyebrow {
  color: var(--yellow);
}

.contact-hero p {
  color: #eef3f6;
}

/* White logo watermark on contact hero (matches all other dark heroes) */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/vannexo-media-logo-white.webp");
  background-size: 220px auto;
  background-repeat: repeat;
  opacity: 0.28;
  pointer-events: none;
}


/* === DESKTOP UX/UI CONSISTENCY PASS === */

/* Viewport-impactful hero height — index has calc(100vh − 84px);
   inner pages use a smaller but still substantial clamped minimum */
.page-hero {
  min-height: clamp(460px, 62vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Scale h1 down to match the index hero — base h1 reaches 5.65rem
   which is far too large for an inner-page hero heading */
.page-hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.04;
}

/* Vertically center text ↔ plumber image (was: align-items: end) */
.page-hero .split {
  align-items: center;
}

/* Taller visual column to match the index hero's plumber panel */
.page-hero-visual {
  position: relative;
  min-height: 420px;
}

/* Decorative blob — exact same values as .hero-circle on the index hero */
.page-hero-visual::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 3%;
  width: min(415px, 74%);
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 42% 58% 54% 46% / 44% 38% 62% 56%;
  transform: rotate(-7deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 30px 90px rgba(35, 168, 223, 0.26);
  animation: heroPulse 7s ease-in-out infinite;
  pointer-events: none;
}

/* Plumber image — same max-height as index .hero-plumber-main */
.page-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  max-height: min(485px, calc(100vh - 170px));
}

/* Eyebrow accent in muted sections: blue-dark for better visual hierarchy */
.section-muted .eyebrow {
  color: var(--blue-dark);
}

/* Mobile: collapse hero min-height; hide decorative blob */
@media (max-width: 980px) {
  .page-hero {
    min-height: auto;
  }

  .page-hero-visual::before {
    display: none;
  }
}


/* === SEARCH CONSOLE PANEL — REDESIGNED GRAPH === */

/* Override old flex bar-chart layout for SVG line chart */
.gsc-chart {
  display: block;
  height: 186px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(
    to top,
    rgba(35, 168, 223, 0.10) 1px,
    transparent 1px
  ) 0 0 / 100% 33.33%,
  linear-gradient(180deg, #ffffff, #eef9fc);
}

/* Hide old bar spans and old hand-drawn clip-path line */
.gsc-chart > span,
.gsc-chart::before {
  display: none;
}

/* SVG canvas: fills chart area, leaving 28px at bottom for x-axis */
.gsc-svg {
  display: block;
  width: 100%;
  height: calc(100% - 28px);
  overflow: visible;
}

/* Gradient area fill under the trend line */
.gsc-area {
  fill: url(#gscFill);
}

/* Animated trend line */
.gsc-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 750;
  stroke-dashoffset: 750;
  animation: gscLineDraw 1.4s cubic-bezier(0.22, 0.8, 0.22, 1) 160ms forwards;
}

/* Endpoint dot — pops in after line finishes drawing */
.gsc-endpoint {
  fill: var(--blue);
  stroke: var(--paper);
  stroke-width: 2.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: gscDotPop 300ms cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}

/* X-axis month labels */
.gsc-x-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 5px;
  border-top: 1px solid #d4e6ef;
}

.gsc-x-axis span {
  color: #7d9099;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Trend percentage badges inside metric cells */
.gsc-up,
.gsc-down {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 3px 7px;
  font-style: normal;
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.gsc-up   { color: #1a7f37; background: #dafbe1; }
.gsc-down { color: #0550ae; background: #ddf4ff; }

/* Active (selected) metric card — blue top border + value colour */
.gsc-metric-active {
  border-top: 3px solid var(--blue) !important;
}

.gsc-metric-active strong {
  color: var(--blue) !important;
}

/* Line-draw keyframe */
@keyframes gscLineDraw {
  to { stroke-dashoffset: 0; }
}

/* Endpoint dot spring-in */
@keyframes gscDotPop {
  from { opacity: 0; transform: scale(0.2); }
  to   { opacity: 1; transform: scale(1);   }
}

@media (prefers-reduced-motion: reduce) {
  .gsc-path      { animation: none; stroke-dashoffset: 0; }
  .gsc-endpoint  { animation: none; opacity: 1; }
}


/* === OFFICIAL GOOGLE G ICON ===
   Replaces conic-gradient square (GSC topbar) and coloured-letter spans
   (review summary + review cards) with the real multicolour G logo.
   Pure CSS — no HTML changes needed.                                    */

:root {
  --google-g: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l3.66-2.84z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E");
}

/* 1 · GSC panel topbar icon */
.gsc-topbar span::before {
  background-image: var(--google-g);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border-radius: 0;
}

/* 2 · Review summary "Google" word → G icon */
.google-word {
  width: 34px;
  height: 34px;
  font-size: 0;           /* hide text content */
  background-image: var(--google-g);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

.google-word span {
  display: none;
}

/* 3 · Review card corner "Google" word → G icon */
.google-card-word {
  width: 22px !important;
  height: 22px !important;
  font-size: 0 !important;
  background-image: var(--google-g);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.google-card-word span {
  display: none !important;
}


/* === UNIFIED HERO BACKGROUNDS ===
   Forces solid black on every hero section.
   Wins the cascade over the earlier .contact-hero light-gradient block
   and any section-dark overrides (which were already black anyway).
   Watermark ::before pseudo-elements are unaffected — they sit on the
   stacking context, not on the background property.                    */

.hero,
.page-hero {
  background-image: url("../images/copy-space-sink.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--paper);
}

.hero-light {
  background-image: url("../images/copy-space-sink.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.hero::before,
.hero-light::before,
.page-hero.section-dark::before,
.contact-hero::before,
.page-hero::before {
  content: none;
}

.hero-grid,
.page-hero .container,
.hero-scroll-hint {
  position: relative;
  z-index: 1;
}

/* Yellow eyebrow on every hero (base .eyebrow uses var(--muted)) */
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--yellow);
}

/* Universal watermark for any .page-hero, including future pages
   (existing per-class rules for section-dark / contact-hero remain) */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/vannexo-media-logo-white.webp");
  background-size: 220px auto;
  background-repeat: repeat;
  opacity: 0.28;
  pointer-events: none;
}

.hero::before,
.hero-light::before,
.page-hero::before,
.page-hero.section-dark::before,
.contact-hero::before {
  content: none;
  background-image: none;
}


/* ============================================================
   UX AUDIT — FULL IMPLEMENTATION
   Accessibility, mobile polish, navigation, forms
   ============================================================ */

/* --- Skip link -------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

/* --- Global focus ring ------------------------------------ */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Body base ------------------------------------------- */
body {
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Heading line-heights --------------------------------- */
h1 { line-height: 1.04; }
h2 { line-height: 1.08; }
h3 { line-height: 1.18; }

/* --- Section heading scale cap --------------------------- */
.section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
}

/* --- Active nav link ------------------------------------- */
.desktop-nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(35, 168, 223, 0.1);
  border-radius: 4px;
  padding-inline: 8px;
}
.mobile-nav a[aria-current="page"] {
  color: var(--blue);
}

/* --- Mobile menu open animation -------------------------- */
@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav.is-open {
  animation: menuSlideDown 220ms ease forwards;
}

/* --- Review dots tap target ------------------------------ */
.review-dot {
  min-width: 36px;
  min-height: 36px;
  padding: 10px;
  background-clip: content-box;
  box-sizing: border-box;
}

/* --- Floating buttons safe-area bottom ------------------- */
.home-float,
.whatsapp-float {
  bottom: max(clamp(14px, 3vw, 28px), calc(env(safe-area-inset-bottom) + 12px));
}

/* --- Home float house icon ------------------------------- */
:root {
  --icon-home: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}
.home-float {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-float::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: var(--icon-home);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  transform: none;
  margin: 0;
}

/* --- Problem grid desktop padding ----------------------- */
@media (min-width: 980px) {
  .problem-grid div {
    padding: clamp(22px, 3vw, 34px);
  }
}

.problem-grid div::before {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.problem-grid div::after {
  left: calc(clamp(22px, 3vw, 34px) + 9px);
  top: calc(clamp(22px, 3vw, 34px) + 9px);
  width: 20px;
  height: 20px;
}

/* --- Process grid 3-col on tablet ----------------------- */
@media (max-width: 980px) and (min-width: 641px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Detail grid 2-col on mid-tablet -------------------- */
@media (max-width: 980px) and (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

/* --- Hero scroll hint ----------------------------------- */
.hero {
  position: relative;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.scroll-hint-mouse {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  position: relative;
}
.scroll-hint-mouse::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollHintBounce 1.6s ease-in-out infinite;
}
@keyframes scrollHintBounce {
  0%, 100% { opacity: 1;   transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}
@media (max-width: 640px)               { .hero-scroll-hint { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-hint { display: none; } }

/* --- Contact enquiry form ------------------------------- */
.contact-form {
  display: grid;
  gap: 20px;
  max-width: 640px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0d5dd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 168, 223, 0.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa4b2;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.form-notice {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.form-notice a {
  color: var(--blue);
  text-decoration: underline;
}
.form-status {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.is-success {
  display: block;
  background: #dafbe1;
  color: #1a7f37;
  border: 1.5px solid #b4f1c4;
}
.form-status.is-error {
  display: block;
  background: #ffeef0;
  color: #cf222e;
  border: 1.5px solid #ffc1c8;
}

/* === HOME HERO: PURE BLACK, WATERMARK REMOVED ===
   Remove the repeating-logo overlay and use pure #000
   so the home hero is clean and deeper.              */
.hero-light {
  background: #000;
}
.hero-light::before {
  content: none;
}
