:root {
  --ink: #16211d;
  --muted: #5d6b64;
  --line: #d8e2dc;
  --paper: #fbfcf9;
  --mist: #eef6f1;
  --water: #1f7f92;
  --water-dark: #155967;
  --leaf: #4f8c63;
  --sun: #f1b84b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(18, 42, 36, 0.16);
}

* {
  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.55;
}

@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@keyframes shineSweep {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }

  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

@keyframes videoGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.02);
  }
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 249, 0.92);
  border-bottom: 1px solid rgba(216, 226, 220, 0.85);
  backdrop-filter: blur(16px);
  animation: softFadeUp 0.55s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(31, 127, 146, 0.16);
  box-shadow: 0 8px 18px rgba(21, 89, 103, 0.1);
  overflow: hidden;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.brand:hover .brand-mark img {
  transform: rotate(-4deg) scale(1.05);
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: #34433d;
  font-size: 0.94rem;
}

.nav-links a,
.header-phone,
.footer a {
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--water-dark);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--water);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--water-dark);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 89, 103, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.youtube-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--water-dark);
  background: var(--mist);
  border: 1px solid rgba(31, 127, 146, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(21, 89, 103, 0.1);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.youtube-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.youtube-button .youtube-play {
  fill: var(--white);
}

.youtube-button:hover,
.youtube-button:focus-visible {
  color: var(--white);
  background: var(--water-dark);
  box-shadow: 0 14px 28px rgba(21, 89, 103, 0.22);
  transform: translateY(-2px);
}

.youtube-button:hover svg,
.youtube-button:focus-visible svg {
  transform: scale(1.08);
}

.header-phone:hover {
  background: #1b6b7c;
  box-shadow: 0 14px 28px rgba(21, 89, 103, 0.24);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: clamp(620px, 85vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: heroZoom 1.6s ease both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 30, 28, 0.78), rgba(10, 30, 28, 0.46) 42%, rgba(10, 30, 28, 0.08) 78%),
    linear-gradient(0deg, rgba(10, 30, 28, 0.35), rgba(10, 30, 28, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 86px 0 110px;
  color: var(--white);
}

.hero-content .eyebrow,
.hero-content h1 span,
.hero-copy,
.hero-actions,
.trust-row {
  animation: softFadeUp 0.7s ease both;
}

.hero-content h1 span:nth-child(1) {
  animation-delay: 0.12s;
}

.hero-content h1 span:nth-child(2) {
  animation-delay: 0.22s;
}

.hero-content h1 span:nth-child(3) {
  animation-delay: 0.32s;
}

.hero-copy {
  animation-delay: 0.42s;
}

.hero-actions {
  animation-delay: 0.52s;
}

.trust-row {
  animation-delay: 0.62s;
}

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

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

h1 {
  margin: 0;
  max-width: 19ch;
  font-size: clamp(2.75rem, 5.8vw, 5.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 36%;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-120%) skewX(-18deg);
}

.button.primary {
  color: #12201b;
  background: var(--sun);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.button:hover::after {
  animation: shineSweep 0.72s ease;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 42px 0 0;
}

.trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.trust-row div:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.trust-row dt {
  font-weight: 900;
  font-size: 1.35rem;
}

.trust-row dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

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

.quick-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--white);
  color: #31423b;
  font-weight: 750;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.quick-strip span:hover {
  color: var(--water-dark);
  background: #f5fbf8;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-grid figure {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(30, 52, 45, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card {
  padding: 26px;
}

.service-card:hover,
.review-grid figure:hover,
.steps li:hover,
.di-points div:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 127, 146, 0.34);
  box-shadow: 0 22px 46px rgba(30, 52, 45, 0.12);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--water-dark);
  background: var(--mist);
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
  background: #ddf1ea;
  transform: rotate(-3deg) scale(1.04);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card p,
.service-card li,
.proof-grid p,
.steps p,
.plan-list span,
.review-grid figcaption {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(64px, 8vw, 92px) clamp(18px, 6vw, 80px);
  background: #173b36;
  color: var(--white);
}

.di-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(62px, 8vw, 96px) clamp(18px, 6vw, 80px);
  background: linear-gradient(135deg, #f8fcff, #e5f4fb);
  border-top: 1px solid #cce5ef;
  border-bottom: 1px solid #cce5ef;
}

.di-content {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
}

.di-logo,
.quote-logo {
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(31, 127, 146, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(21, 89, 103, 0.12);
  transition: transform 0.35s ease;
}

.di-logo:hover,
.quote-logo:hover {
  transform: rotate(-3deg) scale(1.03);
}

.di-logo {
  width: 128px;
  height: 128px;
  padding: 10px;
}

.di-logo img,
.quote-logo {
  object-fit: contain;
}

.di-logo img {
  width: 100%;
  height: 100%;
}

.di-content p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.di-points {
  display: grid;
  gap: 12px;
}

.di-points div {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 127, 146, 0.16);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.di-points span {
  color: var(--muted);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 6vw, 80px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.video-section.is-visible .video-copy .eyebrow,
.video-section.is-visible .video-copy h2,
.video-section.is-visible .video-copy p,
.video-section.is-visible .video-highlights span,
.video-section.is-visible .video-frame {
  animation: softFadeUp 0.72s ease both;
}

.video-section.is-visible .video-copy h2 {
  animation-delay: 0.08s;
}

.video-section.is-visible .video-copy p {
  animation-delay: 0.16s;
}

.video-section.is-visible .video-highlights span:nth-child(1) {
  animation-delay: 0.24s;
}

.video-section.is-visible .video-highlights span:nth-child(2) {
  animation-delay: 0.32s;
}

.video-section.is-visible .video-highlights span:nth-child(3) {
  animation-delay: 0.4s;
}

.video-section.is-visible .video-highlights span:nth-child(4) {
  animation-delay: 0.48s;
}

.video-section.is-visible .video-frame {
  animation-delay: 0.22s;
}

.video-copy {
  max-width: 620px;
}

.video-copy p:not(.eyebrow),
.video-frame p {
  color: var(--muted);
  font-size: 1.06rem;
}

.video-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.video-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--water-dark);
  background: var(--mist);
  border: 1px solid rgba(31, 127, 146, 0.16);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.video-highlights span:hover {
  background: #dff2ec;
  border-color: rgba(31, 127, 146, 0.34);
  transform: translateY(-3px);
}

.video-frame {
  position: relative;
  padding: clamp(12px, 2vw, 18px);
  background: #132522;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-frame::before {
  position: absolute;
  inset: -2px;
  content: "";
  background:
    radial-gradient(circle at 24% 18%, rgba(31, 127, 146, 0.45), transparent 34%),
    radial-gradient(circle at 80% 64%, rgba(241, 184, 75, 0.32), transparent 32%);
  pointer-events: none;
  animation: videoGlow 4s ease-in-out infinite;
}

.video-frame:hover {
  box-shadow: 0 30px 72px rgba(18, 42, 36, 0.24);
  transform: translateY(-6px);
}

.video-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1715;
  border: 0;
  border-radius: 8px;
}

.video-frame p {
  position: relative;
  z-index: 1;
  margin: 14px 2px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.video-frame strong {
  color: var(--white);
  font-weight: 850;
}

.before-after-section {
  padding: clamp(72px, 9vw, 112px) clamp(18px, 6vw, 80px);
  background: #f4faf7;
  border-bottom: 1px solid var(--line);
}

.before-after-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.before-after-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.comparison-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(31, 127, 146, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(30, 52, 45, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.comparison-card:hover {
  border-color: rgba(31, 127, 146, 0.38);
  box-shadow: 0 28px 64px rgba(30, 52, 45, 0.16);
  transform: translateY(-7px);
}

.comparison-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.35s ease;
}

.before-card img {
  filter: saturate(0.9) contrast(0.95);
}

.after-card img {
  filter: saturate(1.08) contrast(1.05);
}

.comparison-card:hover img {
  transform: scale(1.045);
}

.comparison-card.is-swapping img {
  animation: softFadeUp 0.55s ease both;
}

.comparison-card.is-swapping:hover img {
  animation: none;
  transform: scale(1.045);
}

.comparison-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(21, 89, 103, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.after-card .comparison-badge {
  color: #14221d;
  background: rgba(241, 184, 75, 0.94);
}

.comparison-card figcaption {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--muted);
  font-weight: 750;
}

.comparison-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.comparison-dot {
  min-height: 40px;
  padding: 0 15px;
  color: var(--water-dark);
  background: var(--white);
  border: 1px solid rgba(31, 127, 146, 0.22);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(30, 52, 45, 0.08);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.comparison-dot:hover,
.comparison-dot:focus-visible,
.comparison-dot.is-active {
  color: #14221d;
  background: var(--sun);
  box-shadow: 0 14px 28px rgba(30, 52, 45, 0.12);
  transform: translateY(-2px);
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-strip span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px;
  color: var(--water-dark);
  background: var(--white);
  font-weight: 850;
  text-align: center;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.result-strip span:hover {
  color: #14221d;
  background: var(--sun);
  transform: translateY(-2px);
}

.before-after-section.is-visible .before-after-heading,
.before-after-section.is-visible .comparison-card,
.before-after-section.is-visible .comparison-controls,
.before-after-section.is-visible .result-strip span {
  animation: softFadeUp 0.72s ease both;
}

.before-after-section.is-visible .before-card {
  animation-delay: 0.16s;
}

.before-after-section.is-visible .after-card {
  animation-delay: 0.28s;
}

.before-after-section.is-visible .comparison-controls {
  animation-delay: 0.34s;
}

.before-after-section.is-visible .result-strip span:nth-child(1) {
  animation-delay: 0.38s;
}

.before-after-section.is-visible .result-strip span:nth-child(2) {
  animation-delay: 0.46s;
}

.before-after-section.is-visible .result-strip span:nth-child(3) {
  animation-delay: 0.54s;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  padding: 22px;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}

.proof-grid div:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 230px;
  padding: 26px;
  border-top: 4px solid var(--water);
  background: var(--mist);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.steps span {
  display: block;
  margin-bottom: 46px;
  color: var(--water-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.plan-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.plan-list div:hover {
  padding-left: 10px;
  color: var(--water-dark);
}

.review-grid figure {
  margin: 0;
  padding: 28px;
}

.review-grid blockquote {
  margin: 0;
  font-size: 1.06rem;
}

.review-grid figcaption {
  margin-top: 22px;
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 80px);
  background: #e8f2ed;
}

.quote-copy {
  max-width: 560px;
}

.quote-logo {
  width: 94px;
  height: 94px;
  margin-bottom: 24px;
  padding: 8px;
}

.phone-large,
.email-link {
  display: block;
  width: fit-content;
  text-decoration: none;
  position: relative;
  transform-origin: left center;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.phone-large::after,
.email-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--sun);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.phone-large:hover,
.phone-large:focus-visible,
.email-link:hover,
.email-link:focus-visible {
  color: var(--sun);
  text-shadow: 0 10px 24px rgba(21, 89, 103, 0.16);
  transform: scale(1.08);
}

.phone-large:hover::after,
.phone-large:focus-visible::after,
.email-link:hover::after,
.email-link:focus-visible::after {
  transform: scaleX(1);
}

.phone-large {
  margin-top: 28px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--water-dark);
}

.email-link {
  margin-top: 6px;
  color: #37524a;
  font-weight: 750;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form:hover {
  box-shadow: 0 26px 68px rgba(18, 42, 36, 0.2);
  transform: translateY(-4px);
}

label {
  display: grid;
  gap: 7px;
  color: #33433d;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid #cddbd4;
  border-radius: 8px;
  font: inherit;
}

input[type="file"] {
  min-height: auto;
  padding: 11px;
  background: var(--white);
  cursor: pointer;
}

.hidden-field {
  display: none;
}

.file-upload span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 127, 146, 0.2);
  border-color: var(--water);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.04s;
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.13s;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.22s;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.31s;
}

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

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--water-dark);
  font-weight: 750;
}

.form-note a {
  color: var(--water-dark);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #132522;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .quick-strip,
  .service-grid,
  .proof-grid,
  .steps,
  .review-grid,
  .di-section,
  .video-section,
  .before-after-section,
  .band,
  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .steps li {
    min-height: auto;
  }

  .plan-list div {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .header-phone {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .youtube-button,
  .header-phone {
    flex: 1;
  }

  .hero {
    min-height: 700px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 30, 28, 0.84), rgba(10, 30, 28, 0.56)),
      linear-gradient(0deg, rgba(10, 30, 28, 0.38), rgba(10, 30, 28, 0));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 64px 0 92px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .di-content {
    grid-template-columns: 1fr;
  }

  .quick-strip span {
    min-height: 64px;
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .footer {
    display: grid;
  }
}

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

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
