/* Reset & tokens */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #29abe2;
  --blue-dark: #1690c7;
  --blue-soft: #e7f5fc;
  --mist:      #f2f9fd;
  --ink:       #16384e;
  --body-c:    #5b7286;
  --line:      #e0edf5;
  --font:      'Elms Sans', 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}

body.alphaclean-acf-page {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: normal;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}

body.alphaclean-acf-page #hdr,
body.alphaclean-acf-page .alphaclean-page,
body.alphaclean-acf-page footer {
  font-family: var(--font);
  color: var(--ink);
}

body.alphaclean-acf-page #hdr *,
body.alphaclean-acf-page .alphaclean-page *,
body.alphaclean-acf-page footer * { word-spacing: -.2em; }
body.alphaclean-acf-page #wpadminbar,
body.alphaclean-acf-page #wpadminbar * { word-spacing: normal !important; }
body.alphaclean-acf-page * { -webkit-tap-highlight-color: transparent; }

body.alphaclean-acf-page a:focus,
body.alphaclean-acf-page a:active,
body.alphaclean-acf-page button:focus,
body.alphaclean-acf-page button:active,
body.alphaclean-acf-page input:focus,
body.alphaclean-acf-page input:active,
body.alphaclean-acf-page select:focus,
body.alphaclean-acf-page select:active,
body.alphaclean-acf-page textarea:focus,
body.alphaclean-acf-page textarea:active,
body.alphaclean-acf-page [tabindex]:active,
body.alphaclean-acf-page [tabindex]:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media (hover:hover) and (pointer:fine) {
  body, a, button, select, input, textarea, label { cursor: none; }
  #wpadminbar,
  #wpadminbar * { cursor: auto !important; }
  #wpadminbar a,
  #wpadminbar button,
  #wpadminbar .ab-item,
  #wpadminbar [role="button"] { cursor: pointer !important; }
  #wpadminbar input,
  #wpadminbar textarea { cursor: text !important; }
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Droplet cursor & spray */
#washer {
  position: fixed; left: 0; top: 0;
  z-index: 9999; pointer-events: none;
  transform-origin: 14px 14px;
  will-change: transform;
}
#washer svg path { fill: var(--blue); transition: fill .15s; }
#washer.lt svg path { fill: #fff; }
.drop {
  position: fixed; left: 0; top: 0;
  border-radius: 50% 50% 60% 60%;
  pointer-events: none; z-index: 9998;
}

/* Header: topbar + nav */
#hdr { position: absolute; top: 0; left: 0; right: 0; z-index: 1000; }

.topbar {
  background: #050e13; color: #fff;
  padding: 9px 56px;
  font-size: 12.5px; font-weight: 500;
}
.tb-inner {
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.tb-tag { opacity: .85; }
.tb-tag::before { content: "\2726"; color: var(--blue); margin-right: 9px; }
.topbar-right { display: flex; align-items: center; gap: 24px; }
.tb-areas { opacity: .7; }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

#nav {
  padding: 20px 56px;
  background: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.nav-inner {
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
#nav.on { border-bottom-color: rgba(255,255,255,.3); padding: 20px 56px; }

.n-logo {
  min-height: 44px;
  display: inline-flex; align-items: center;
  font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -1px; color: #fff;
}
.n-logo:hover { color: #fff; text-decoration: none; }

.n-links {
  min-height: 44px;
  display: flex; align-items: center; gap: 36px;
  margin: 0; padding: 0;
}
.n-links li {
  min-height: 44px;
  display: flex; align-items: center;
}
.n-links a {
  min-height: 44px;
  display: inline-flex; align-items: center;
  position: relative;
  font-size: 18px; font-weight: 600; color: #fff;
  line-height: 1;
  transition: none;
}
.n-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .2s ease, transform .2s ease;
}
.n-links a:hover,
.n-links a:focus-visible {
  color: #fff;
  text-decoration: none;
}
.n-links a:hover::after,
.n-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  padding: 13px 30px; border-radius: 100px;
  font-family: var(--font); font-size: 14.5px; font-weight: 700; line-height: 1;
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:hover {
  background: var(--blue-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(41,171,226,.35);
}
.btn-lg { padding: 17px 40px; font-size: 16px; }

.btn-inverse { background: #fff; color: var(--blue); }
.btn-inverse:hover { background: #fff; color: var(--blue-dark); text-decoration: none; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.02fr .98fr;
  align-items: center; gap: 64px;
  padding: 198px 56px 90px;
  max-width: 1340px; margin: 0 auto;
}

.h-pill {
  display: inline-block;
  background: var(--blue-soft); color: var(--blue);
  font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 26px;
}

.h-title {
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 800; line-height: 1.02; letter-spacing: -2.5px;
  margin: 0 0 24px;
}
.alphaclean-acf-page .h-title,
.alphaclean-acf-page .sec-title,
.alphaclean-acf-page .srv-name,
.alphaclean-acf-page .ba-cap h3,
.alphaclean-acf-page .step h3,
.alphaclean-acf-page .serve-card h3 {
  color: var(--ink);
  font-family: var(--font);
}
.h-title em { font-style: normal; color: var(--blue); }

.h-sub {
  font-size: 17.5px; line-height: 1.7; color: var(--body-c);
  max-width: 470px; margin-bottom: 34px;
}

.h-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 34px; }
.h-link { font-size: 15px; font-weight: 700; color: var(--blue); }
.h-link:hover { text-decoration: underline; }

.h-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.h-trust span {
  font-size: 13px; font-weight: 600; color: var(--body-c);
  background: var(--mist); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 100px;
}
.h-trust b { color: var(--blue); margin-right: 5px; font-weight: 800; }

/* Wash-to-reveal card */
.wash-wrap { position: relative; }
.wash-spark {
  position: absolute; top: -26px; right: -22px; z-index: 8;
  width: 72px; height: 72px;
  pointer-events: none;
}
.wash-stage {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px; overflow: hidden;
  touch-action: none;
}
.wash-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
#washCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.wash-touch-slider { display: none; }
.wash-touch-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.wash-touch-after { clip-path: inset(0 0 0 50%); }
.wash-touch-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; z-index: 4;
}
.wash-touch-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 58px; height: 58px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(22,56,78,.18);
}
.wash-touch-handle svg { display: block; width: 28px; height: 28px; }
.wash-touch-labels {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: space-between; padding: 0 16px;
  pointer-events: none;
}
.wash-touch-labels span {
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.wash-touch-labels span:last-child { background: var(--blue); color: #fff; }
.wash-touch-range {
  appearance: none; -webkit-appearance: none;
  position: absolute; inset: 0; z-index: 9;
  width: 100%; height: 100%;
  margin: 0; opacity: .001;
  background: transparent; cursor: ew-resize;
}
.wash-touch-slider:focus-within .wash-touch-divider {
  outline: none;
}
.wash-touch-range::-webkit-slider-runnable-track {
  width: 100%; height: 100%; background: transparent; border: 0;
}
.wash-touch-range::-moz-range-track {
  width: 100%; height: 100%; background: transparent; border: 0;
}
.wash-touch-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 72px; height: 72px; border: 0; border-radius: 50%; background: transparent;
}
.wash-touch-range::-moz-range-thumb {
  width: 72px; height: 72px; border: 0; border-radius: 50%; background: transparent;
}
.wash-tag {
  position: absolute; top: 16px; left: 16px; z-index: 5;
  background: #fff; color: var(--ink);
  font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 100px;
  pointer-events: none;
}
.wash-hint {
  position: absolute; left: 50%; bottom: 22px; z-index: 5;
  transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: clamp(16px, 1.35vw, 19px); font-weight: 800; white-space: nowrap;
  padding: 14px 30px; border-radius: 100px;
  box-shadow: 0 16px 34px rgba(41,171,226,.34);
  pointer-events: none;
  animation: hint-bob 1.6s ease-in-out infinite;
}
@keyframes hint-bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,-7px)} }

.wash-badge {
  position: absolute; left: 50%; top: 50%; z-index: 6;
  transform: translate(-50%,-50%);
  background: #fff; color: var(--blue);
  font-size: 19px; font-weight: 800; white-space: nowrap;
  padding: 16px 32px; border-radius: 100px;
  border: 2px solid var(--blue);
  opacity: 0; pointer-events: none;
}
.wash-again {
  position: absolute; top: 16px; right: 16px; z-index: 6;
  left: auto;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: 12.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px; border: none;
  font-family: var(--font);
  opacity: 0; pointer-events: none;
  transform-origin: center;
  transition: opacity .2s, transform .2s;
}
.wash-again.show { opacity: 1; pointer-events: auto; }
.wash-again:not(.show) { transform: none; }
.wash-again.show:hover { transform: scale(1.05); }
.wash-again:focus,
.wash-again:active {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
}
.wash-again.show:active { transform: none; }

.wash-note {
  text-align: center; margin-top: 16px;
  font-size: 13.5px; color: var(--body-c); font-weight: 500;
}
.wash-note-touch { display: none; }

@media (hover: none), (pointer: coarse), (any-pointer: coarse) {
  .wash-stage {
    touch-action: pan-y;
    user-select: none; -webkit-user-select: none;
  }
  .wash-stage > img,
  #washCanvas,
  .wash-hint,
  .wash-badge,
  .wash-again { display: none; }
  .wash-touch-slider {
    display: block;
    position: absolute; inset: 0;
  }
  .wash-note-pointer { display: none; }
  .wash-note-touch { display: block; }
}

/* Marquee */
.marquee {
  background: var(--blue);
  padding: 18px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-inner { display: inline-flex; animation: mq 26s linear infinite; }
.m-item {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #fff;
}
.m-item::after { content: "\2726"; font-size: 11px; margin: 0 30px; opacity: .7; letter-spacing: 0; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Shared section bits */
.sec { padding: 100px 56px; max-width: 1340px; margin: 0 auto; }
.sec-mist { background: var(--mist); }
.sec-mist-outer { background: var(--mist); }

.eyebrow {
  display: inline-block;
  background: var(--blue-soft); color: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800; letter-spacing: -1.8px; line-height: 1.08;
}
.alphaclean-acf-page .sec-title { margin: 0; }
.sec-title em { font-style: normal; color: var(--blue); }
.sec-sub { font-size: 16.5px; color: var(--body-c); line-height: 1.7; max-width: 520px; margin-top: 16px; }
.alphaclean-acf-page .sec-sub p { margin: 0; }
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }

/* Services */
.srv-grid { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
.srv-card { width: calc((100% - 44px) / 3); }

.srv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 32px;
  transition: transform .25s, box-shadow .25s;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(41,171,226,.16);
}

.srv-icon {
  width: 56px; height: 56px;
  border-radius: 16px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background .25s, transform .3s;
}
.srv-card:hover .srv-icon { background: var(--blue); transform: rotate(-6deg) scale(1.06); }
.srv-icon svg { width: 24px; height: 24px; }
.srv-card:hover .srv-icon svg * { stroke: #fff; }

.srv-name { font-size: 20px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
.srv-pts { display: flex; flex-direction: column; gap: 8px; }
.srv-pts li {
  font-size: 14px; color: var(--body-c);
  display: flex; align-items: center; gap: 9px;
}
.srv-pts li::before {
  content: '';
  width: 17px; height: 17px; flex-shrink: 0; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.5l2.5 2.5L13 6.5' stroke='%2329abe2' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Before / After sliders */
#results {
  position: relative;
  isolation: isolate;
  overflow: visible;
}
#results::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #45b1e1 0%, #2fa7dc 100%);
}
#results::after {
  content: "\2726  \2726  \2726";
  position: absolute;
  top: 34px; right: 56px;
  z-index: -1;
  color: rgba(255,255,255,.28);
  font-size: 38px; font-weight: 800;
  letter-spacing: 18px;
  pointer-events: none;
}
#results .eyebrow {
  background: rgba(255,255,255,.94);
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(22,56,78,.12);
}
body.alphaclean-acf-page #results .sec-title,
body.alphaclean-acf-page #results .sec-title em,
body.alphaclean-acf-page #results .ba-cap h3 {
  color: #fff;
}
#results .sec-title {
  text-shadow: 0 8px 24px rgba(22,56,78,.18);
}
#results .sec-sub,
#results .ba-cap p {
  color: rgba(255,255,255,.9);
}
#results .ba-compare {
  border: 3px solid rgba(255,255,255,.38);
  box-shadow: 0 24px 58px rgba(22,56,78,.22);
}
#results .ba-handle {
  box-shadow: 0 12px 30px rgba(22,56,78,.24);
}
#results .ba-cap {
  margin-top: 20px;
}
#results .ba-cap h3 {
  text-shadow: 0 6px 18px rgba(22,56,78,.16);
}

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.ba-compare {
  position: relative; aspect-ratio: 4/3;
  border-radius: 22px; overflow: hidden;
  touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.ba-compare img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; z-index: 10;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 58px; height: 58px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ba-handle svg { display: block; width: 28px; height: 28px; }
.ba-lbls {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 11;
  display: flex; justify-content: space-between; padding: 0 16px;
  pointer-events: none;
}
.ba-lbl {
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.ba-lbl.aft { background: var(--blue); color: #fff; }

.ba-cap { margin-top: 18px; }
.ba-cap h3 { font-size: 20px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 6px; }
.ba-cap p { font-size: 14.5px; color: var(--body-c); line-height: 1.65; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 40px 34px; position: relative;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 21px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step h3 { font-size: 21px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--body-c); line-height: 1.7; }

/* About */
.about {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 30%;
  border-radius: 24px;
}
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; border-radius: 16px;
  padding: 16px 24px;
}
.about-badge strong { display: block; font-size: 17px; font-weight: 800; color: var(--ink); }
.about-badge span { font-size: 12.5px; color: var(--body-c); }

.about-copy p { font-size: 16px; color: var(--body-c); line-height: 1.75; margin-top: 16px; }
.about-quote {
  margin-top: 28px;
  background: var(--blue-soft); border-radius: 16px;
  padding: 22px 26px;
}
.about-quote p {
  margin: 0; font-size: 15.5px; font-style: italic;
  color: var(--ink); line-height: 1.65; font-weight: 500;
}
.about-cta { margin-top: 30px; }

/* Who we serve */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.serve-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 44px 40px;
  transition: transform .25s, box-shadow .25s;
}
.serve-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(41,171,226,.14); }
.serve-card h3 { font-size: 25px; font-weight: 800; letter-spacing: -.7px; margin: 16px 0 12px; }
.inline-eyebrow { margin: 0; }
.serve-card > p { font-size: 15px; color: var(--body-c); line-height: 1.7; margin-bottom: 22px; }
.serve-pts { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.serve-pts li {
  font-size: 14.5px; color: var(--body-c);
  display: flex; align-items: center; gap: 10px;
}
.serve-pts li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.5l2.5 2.5L13 6.5' stroke='%2329abe2' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Quote form */
.quote-card {
  background: #fff; border-radius: 28px;
  border: 1px solid var(--line);
  padding: 56px;
  max-width: 860px; margin: 0 auto;
}
.q-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 13px; font-weight: 700; color: var(--ink); }
.fg input, .fg select, .fg textarea {
  background: var(--mist);
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 13px 16px; border-radius: 12px;
  font-family: var(--font); font-size: 15px;
  outline: none; appearance: none;
  transition: border-color .2s, background .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--line); background: #fff;
}
.fg input::placeholder, .fg textarea::placeholder { color: #a8bcca; }
.fg textarea { min-height: 100px; resize: vertical; }
.q-submit { grid-column: 1 / -1; margin-top: 4px; }
.q-btn { width: 100%; }
.q-btn:disabled { opacity: .8; transform: none; box-shadow: none; }
.quote-head { margin-bottom: 0; }
.q-form-wrap { margin-top: 40px; }

.quote-card .gform_wrapper,
.quote-card .gform_wrapper form,
.quote-card .gform_wrapper .gform-body,
.quote-card .gform_wrapper .gform_body {
  margin: 0;
  padding: 0;
}
.quote-card .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px !important;
  grid-row-gap: 18px !important;
  grid-column-gap: 18px !important;
}
.quote-card .gform_wrapper .gfield {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
  grid-column: auto !important;
  margin: 0 !important;
  min-width: 0;
}
.quote-card .gform_wrapper .ginput_container {
  margin-top: 7px !important;
}
.quote-card .gform_wrapper #field_1_5,
.quote-card .gform_wrapper #field_1_9,
.quote-card .gform_wrapper .gform_footer,
.quote-card .gform_wrapper .gform-footer {
  grid-column: 1 / -1 !important;
}
.quote-card .gform_wrapper .gfield_label {
  display: block !important;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: var(--ink);
  width: 100%;
}
.quote-card .gform_wrapper .gfield_required {
  color: var(--ink);
  font-size: 13px;
  line-height: normal;
  margin-left: 4px;
}
.quote-card .gform_wrapper .gfield_required_text {
  font-size: 0;
}
.quote-card .gform_wrapper .gfield_required_text::before {
  content: "*";
  font-size: 13px;
}
.quote-card .gform_wrapper .gfield_description {
  color: #7e93a5;
  font-size: 12px;
  line-height: 1.45;
  margin: 6px 0 0;
  padding: 0;
}
.quote-card .gform_wrapper #field_1_7 .gfield_description {
  display: none;
}
.quote-card .gform_wrapper input[type="text"],
.quote-card .gform_wrapper input[type="tel"],
.quote-card .gform_wrapper input[type="email"],
.quote-card .gform_wrapper input[type="url"],
.quote-card .gform_wrapper select,
.quote-card .gform_wrapper textarea {
  block-size: 48px !important;
  inline-size: 100% !important;
  min-block-size: 48px !important;
  width: 100%;
  height: 48px !important;
  min-height: 48px !important;
  background: var(--mist);
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  outline: none;
  appearance: none;
  box-shadow: none;
  transition: border-color .2s, background .2s;
}
.quote-card .gform_wrapper input::placeholder,
.quote-card .gform_wrapper textarea::placeholder {
  color: #a8bcca;
}
.quote-card .gform_wrapper input:focus,
.quote-card .gform_wrapper select:focus,
.quote-card .gform_wrapper textarea:focus {
  border-color: var(--line) !important;
  background: #fff !important;
}
.quote-card .gform_wrapper textarea {
  block-size: 100px !important;
  height: 100px !important;
  min-block-size: 100px !important;
  min-height: 100px !important;
  resize: vertical;
}
.quote-card .gform_wrapper .gform_footer,
.quote-card .gform_wrapper .gform-footer {
  inline-size: 100% !important;
  margin: 22px 0 0 !important;
  padding: 0;
  width: 100% !important;
}
.quote-card .gform_wrapper .gform_button {
  block-size: auto !important;
  inline-size: 100% !important;
  min-block-size: 55px !important;
  width: 100%;
  height: auto !important;
  min-height: 55px !important;
  display: inline-block;
  background: var(--blue) !important;
  color: #fff !important;
  padding: 17px 40px !important;
  border-radius: 100px !important;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.quote-card .gform_wrapper .gform_button:hover {
  background: var(--blue-dark) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(41,171,226,.35) !important;
}
.quote-card .gform_wrapper .gform_button:active {
  box-shadow: none !important;
}
.quote-card .gform_wrapper .gform_drop_area {
  background: var(--mist);
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  color: var(--body-c);
  margin: 0;
  padding: 18px;
  text-align: center;
}
.quote-card .gform_wrapper .gform_button_select_files {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  color: var(--blue);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
}
.quote-card .gform_wrapper .gfield_error input,
.quote-card .gform_wrapper .gfield_error select,
.quote-card .gform_wrapper .gfield_error textarea {
  border-color: #e89090;
  background: #fffafa;
}
.quote-card .gform_wrapper .validation_message,
.quote-card .gform_wrapper .gform_submission_error {
  color: #b42318;
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.45;
}
.quote-card .gform_wrapper .gform_validation_errors {
  background: #fffafa;
  border: 1px solid #f1c1c1;
  border-radius: 12px;
  box-shadow: none;
  color: #b42318;
  margin: 0 0 18px;
  padding: 14px 16px;
}

/* Footer */
footer {
  background: var(--blue); color: #fff;
  padding: 64px 56px 36px;
}
body.alphaclean-acf-page footer { color: #fff; }
.f-inner { max-width: 1340px; margin: 0 auto; }
.f-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.f-logo { color: #fff; font-size: 24px; font-weight: 800; letter-spacing: -1px; }
.f-sub { font-size: 14px; opacity: .85; margin-top: 10px; max-width: 360px; line-height: 1.65; }
.f-links { display: flex; gap: 28px; flex-wrap: wrap; }
.f-links a { color: #fff; font-size: 14.5px; font-weight: 600; opacity: .9; }
.f-links a:hover { color: #fff; opacity: 1; text-decoration: underline; }
.f-areas { font-size: 13.5px; opacity: .8; margin-bottom: 24px; }
.f-copy {
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 22px; font-size: 13px; opacity: .75;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding: 178px 40px 70px; gap: 48px; }
  .about { grid-template-columns: 1fr; gap: 44px; }
  .about-img { max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 800px) {
  .topbar { padding: 8px 22px; }
  .tb-inner { justify-content: center; }
  .tb-tag, .tb-areas { display: none; }
  #nav { padding: 14px 22px; }
  #nav.on { padding: 14px 22px; }
  .n-links { display: none; }
  .hero { padding: 156px 22px 60px; }
  .sec { padding: 72px 22px; }
  .srv-card { width: 100%; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 36px 24px; }
  .q-form { grid-template-columns: 1fr; }
  .quote-card .gform_wrapper .gform_fields { grid-template-columns: 1fr; }
  .quote-card .gform_wrapper .gfield,
  .quote-card .gform_wrapper #field_1_5,
  .quote-card .gform_wrapper #field_1_9,
  .quote-card .gform_wrapper .gform_footer,
  .quote-card .gform_wrapper .gform-footer { grid-column: 1; }
  .fg.full, .q-submit { grid-column: 1; }
  footer { padding: 48px 22px 30px; }
}
