:root {
  --ink: #102026;
  --muted: #60727a;
  --line: #dfe8e8;
  --paper: #ffffff;
  --soft: #f3f8f7;
  --mint: #19a979;
  --mint-dark: #087451;
  --blue: #1877b8;
  --amber: #f0b43c;
  --danger-soft: #f8ded6;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(16, 32, 38, 0.14);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(8, 20, 22, 0.72), rgba(8, 20, 22, 0));
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 31, 34, 0.86);
  box-shadow: 0 16px 34px rgba(8, 20, 22, 0.16);
  backdrop-filter: blur(16px);
}

.brand,
.desktop-nav,
.hero-actions,
.trust-row,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.desktop-nav {
  gap: 26px;
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #ffffff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta {
  color: #0b3b2d;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 32, 38, 0.12);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 66px;
  color: #ffffff;
}

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

.hero-slider {
  z-index: 0;
}

.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  animation: heroBreath 9s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 25, 25, 0.9) 0%, rgba(5, 25, 25, 0.64) 42%, rgba(5, 25, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 25, 25, 0.3), rgba(5, 25, 25, 0.12));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  animation: heroContentIn 900ms ease both;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.clean-sweep {
  position: absolute;
  top: -18%;
  left: -28%;
  width: 180px;
  height: 136%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  filter: blur(2px);
  opacity: 0;
  transform: skewX(-18deg);
  animation: cleanSweep 7.5s ease-in-out infinite;
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0.82;
  animation: sparkleDance 4.8s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transform: translate(-50%, -50%);
}

.sparkle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sparkle-one {
  top: 25%;
  left: 44%;
}

.sparkle-two {
  top: 56%;
  left: 68%;
  width: 14px;
  height: 14px;
  animation-delay: 900ms;
}

.sparkle-three {
  top: 72%;
  left: 36%;
  width: 12px;
  height: 12px;
  animation-delay: 1.8s;
}

.hero-slider-controls {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(11, 31, 34, 0.36);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(11, 31, 34, 0.38);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.hero-arrow-prev::before {
  transform: rotate(225deg);
  margin-left: 4px;
}

.hero-arrow-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.hero-arrow:hover,
.hero-arrow:focus-visible,
.hero-dot:hover,
.hero-dot:focus-visible {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.56);
  background-color: rgba(255, 255, 255, 0.22);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #85f0c4;
}

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

h1 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 7vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button.primary {
  color: #ffffff;
  background: var(--mint);
  box-shadow: 0 14px 30px rgba(25, 169, 121, 0.3);
  position: relative;
  overflow: hidden;
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 500ms ease;
}

.button.primary:hover::after,
.button.primary:focus-visible::after {
  transform: translateX(130%);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--mint-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button.ghost {
  color: var(--mint-dark);
  border-color: #bed9d2;
  background: #ffffff;
}

.full-width {
  width: 100%;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 700;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.quick-strip div {
  padding: 22px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  line-height: 1;
}

.quick-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  scroll-margin-top: 86px;
  padding: 82px clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(var(--container), 100%);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: var(--container);
}

.section-heading h2,
.section-heading p,
.section-heading .eyebrow {
  max-width: 790px;
}

.section-heading h2,
.estimate-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.estimate-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.service-grid,
.pricing-grid,
.result-grid,
.review-layout,
.review-grid,
.steps {
  display: grid;
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
  gap: 18px;
}

.service-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.price-card,
.before-after-card,
.review-score-card,
.review-card,
.testimonial,
.steps article,
.estimator,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.price-card:hover,
.before-after-card:hover,
.review-score-card:hover,
.review-card:hover,
.steps article:hover,
.estimator:hover,
details:hover {
  border-color: rgba(25, 169, 121, 0.32);
  box-shadow: 0 18px 38px rgba(16, 32, 38, 0.1);
  transform: translateY(-4px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 320px;
  padding: 26px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--mint);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  color: var(--mint-dark);
  background: #dff5ec;
  font-weight: 800;
}

.service-card:nth-child(2)::before {
  background: var(--blue);
}

.service-card:nth-child(2) .service-icon {
  color: #0d4d76;
  background: #dceffa;
}

.service-card:nth-child(3)::before {
  background: var(--amber);
}

.service-card:nth-child(3) .service-icon {
  color: #6a4600;
  background: #fff0c9;
}

.service-card h3,
.price-card h3,
.steps h3,
.testimonial strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-card p,
.price-card p,
.steps p,
.testimonial span,
details p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
  color: #31454c;
  font-size: 0.95rem;
}

.service-card li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.service-card:nth-child(2) li::before {
  background: var(--blue);
}

.service-card:nth-child(3) li::before {
  background: var(--amber);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  justify-content: center;
  background: var(--soft);
}

.estimate-copy {
  max-width: 650px;
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.checklist span {
  position: relative;
  padding-left: 30px;
  color: #20373f;
  font-weight: 700;
}

.checklist span::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 5px #dff5ec;
}

.estimator {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #31454c;
  font-size: 0.9rem;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d8d8;
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

select:focus,
input:focus {
  outline: 3px solid rgba(25, 169, 121, 0.18);
  border-color: var(--mint);
}

.estimate-result {
  display: grid;
  gap: 4px;
  border-radius: var(--radius);
  padding: 18px;
  background: #eefaf6;
}

.estimate-result span,
.estimate-result small {
  color: var(--muted);
}

.estimate-result strong {
  font-size: 2rem;
}

.muted {
  background: #f8fbfb;
}

.area-section {
  background: #ffffff;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
  gap: 12px;
}

.area-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #20373f;
  background: #f8fbfb;
  font-weight: 800;
}

.pricing-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 26px;
}

.price-card .button {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(25, 169, 121, 0.38);
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  margin: 20px 0 4px;
  font-size: 1.8rem;
}

.price-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: var(--radius);
  padding: 6px 9px;
  color: #4f3300;
  background: #ffe2a0;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.before-after-card {
  overflow: hidden;
}

.comparison-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce9e8;
}

.comparison-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  border-radius: var(--radius);
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(12, 24, 28, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.before-label {
  left: 14px;
}

.after-label {
  right: 14px;
  background: rgba(8, 116, 81, 0.84);
}

.comparison-divider {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 1;
  width: 3px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(16, 32, 38, 0.12);
}

.comparison-copy {
  padding: 20px;
}

.comparison-copy h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.comparison-copy p {
  margin: 0;
  color: var(--muted);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.result-tags span {
  border-radius: var(--radius);
  padding: 7px 9px;
  color: var(--mint-dark);
  background: #e8f8f1;
  font-size: 0.78rem;
  font-weight: 900;
}

.testimonial {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: #123238;
  color: #ffffff;
}

.testimonial p {
  font-size: 1.18rem;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.68);
}

.result-testimonial {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  min-height: auto;
  align-items: end;
}

.result-testimonial p {
  grid-row: 1 / span 2;
  max-width: 820px;
}

.result-testimonial strong,
.result-testimonial span {
  justify-self: end;
  white-space: nowrap;
}

.review-section {
  background: #f8fbfb;
}

.review-layout {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: start;
}

.review-score-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(25, 169, 121, 0.12), rgba(255, 255, 255, 0) 54%),
    #ffffff;
}

.review-score-card > strong {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.review-score-card > p:not(.eyebrow) {
  color: var(--muted);
}

.stars {
  color: var(--amber);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0;
}

.rating-bars {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.rating-bar {
  display: grid;
  grid-template-columns: 78px 1fr 42px;
  gap: 10px;
  align-items: center;
  color: #31454c;
  font-size: 0.9rem;
  font-weight: 800;
}

.rating-bar i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe8e8;
}

.rating-bar i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

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

.review-card {
  display: grid;
  gap: 18px;
  min-height: 230px;
  padding: 22px;
}

.review-card-top,
.review-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-card-top > strong {
  border-radius: var(--radius);
  padding: 7px 9px;
  color: var(--mint-dark);
  background: #e8f8f1;
  font-size: 0.86rem;
}

.review-card p {
  margin: 0;
  color: #20373f;
  font-size: 1.03rem;
}

.review-person {
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

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

.review-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.steps-section {
  background: #fbfaf5;
}

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

.steps article {
  min-height: 210px;
  padding: 22px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 72px);
  justify-content: center;
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.footer {
  display: grid;
  gap: 34px;
  padding: 54px clamp(18px, 5vw, 72px) 30px;
  color: #ffffff;
  background:
    linear-gradient(180deg, #123238 0%, #102026 72%);
}

.footer .brand-mark {
  background: transparent;
  box-shadow: 0 14px 30px rgba(5, 16, 18, 0.2);
}

.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 30px;
}

.footer-cta-row h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(170px, 0.75fr));
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
  gap: clamp(26px, 4vw, 54px);
}

.footer-brand-block p {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-column,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3,
.footer-contact h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-column a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #ffffff;
}

.footer-contact-link {
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: #15a06f;
  box-shadow: 0 16px 34px rgba(12, 54, 43, 0.26);
  font-weight: 900;
  animation: waPulse 2.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes cleanSweep {
  0% {
    opacity: 0;
    transform: translateX(-20vw) skewX(-18deg);
  }
  20% {
    opacity: 0.34;
  }
  52% {
    opacity: 0.16;
  }
  100% {
    opacity: 0;
    transform: translateX(150vw) skewX(-18deg);
  }
}

@keyframes sparkleDance {
  0%,
  100% {
    opacity: 0;
    transform: translateY(12px) rotate(0deg) scale(0.65);
  }
  36% {
    opacity: 0.84;
    transform: translateY(0) rotate(18deg) scale(1);
  }
  70% {
    opacity: 0.46;
    transform: translateY(-10px) rotate(-12deg) scale(0.82);
  }
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(12, 54, 43, 0.26);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 18px 44px rgba(21, 160, 111, 0.42);
    transform: translateY(-2px);
  }
}

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

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

  .result-testimonial {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 18px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 100px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 25, 25, 0.92), rgba(5, 25, 25, 0.5)),
      linear-gradient(0deg, rgba(5, 25, 25, 0.38), rgba(5, 25, 25, 0.14));
  }

  .quick-strip,
  .split-section,
  .pricing-grid,
  .area-grid,
  .faq-section,
  .review-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .hero-slider-controls {
    right: 18px;
    bottom: 22px;
  }
}

@media (max-width: 620px) {
  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 90svh;
    align-items: flex-end;
    padding-bottom: 88px;
  }

  .hero-slide {
    object-position: center;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

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

  .hero-slider-controls {
    left: 20px;
    right: auto;
    bottom: 34px;
  }

  .sparkle-one,
  .sparkle-two,
  .sparkle-three {
    display: none;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-dots {
    gap: 6px;
    padding: 7px 9px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.is-active {
    width: 20px;
  }

  .service-grid,
  .result-grid,
  .review-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 18px;
  }

  .testimonial {
    min-height: 300px;
  }

  .result-testimonial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .result-testimonial p {
    grid-row: auto;
  }

  .result-testimonial strong,
  .result-testimonial span {
    justify-self: start;
  }

  .tag {
    position: static;
    display: inline-flex;
    width: max-content;
    margin-bottom: 16px;
  }

  .footer {
    padding-bottom: 92px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
