:root {
  --black: #050505;
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --line: #deded9;
  --muted: #6c6c68;
  --muted-dark: #a8a8a1;
  --gold: #d6a72f;
  --gold-dark: #9f7718;
  --gold-soft: #fff5d6;
  --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(--gold);
  border-color: var(--gold);
}

.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: #d6d6d0;
  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 {
  padding: clamp(86px, 8vw, 118px) 0 clamp(84px, 8vw, 120px);
  border-bottom: 1px solid #edf1f2;
}

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

.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(--gold);
}

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: #d6d6d0;
}

.hero-light .hero-lede {
  max-width: 760px;
  color: var(--black);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.22;
}

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

.hero-points li {
  position: relative;
  padding-left: 32px;
  color: #86919b;
  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: 44px;
}

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

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

.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: #82909b;
  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: #8996a0;
  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(--gold);
  border-color: var(--gold);
}

.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 {
  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: 720px;
  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(--black);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

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

.hero-plumber {
  position: absolute;
  z-index: 2;
  object-fit: contain;
}

.hero-plumber-main {
  right: 19%;
  bottom: 0;
  width: min(390px, 60%);
  max-height: 535px;
}

.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(--paper);
  background: #f2b900;
}

.metric-grid span,
.process-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-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 {
  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 {
  padding: clamp(22px, 3vw, 34px);
}

.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(214, 167, 47, 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: contain;
  border: 0;
}

.ai-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 88px;
  color: var(--gold);
  border: 1px solid rgba(214, 167, 47, 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;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.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: "★★★★★";
}

.review-card {
  position: relative;
  min-height: 245px;
  padding-top: 26px;
  border-color: #e3e6ea;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.review-card::after {
  content: "G";
  position: absolute;
  top: 24px;
  right: 24px;
  color: #4285f4;
  font-size: 1.35rem;
  font-weight: 950;
}

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

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

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

.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;
}

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

.review-card p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.review-card > span:last-child {
  margin-top: 22px;
}

.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(214, 167, 47, 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(--gold);
}

.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(--gold);
  box-shadow: 0 22px 54px rgba(214, 167, 47, 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(--gold);
  }

  .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%);
  }

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

  .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.45rem, 7vw, 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;
  }

  .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,
  .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-card {
    min-height: 220px;
  }

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

  .home-float {
    left: 14px;
  }

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