/* ============================================================
   ADP Power Washing Services
   Dark industrial aesthetic — black, electric blue, silver
   ============================================================ */

:root {
  --bg:        #06090f;
  --bg-2:      #0a1119;
  --panel:     #0e1722;
  --panel-2:   #111e2c;
  --line:      rgba(120, 170, 210, 0.14);
  --line-soft: rgba(120, 170, 210, 0.08);

  --ink:       #eaf2fa;
  --ink-soft:  #9fb3c7;
  --ink-mute:  #6b8093;

  --blue:      #2bb6f2;   /* electric brand blue, sampled from logo */
  --blue-hi:   #6fd2ff;
  --blue-deep: #117bbd;
  --blue-glow: rgba(43, 182, 242, 0.35);

  --maxw: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- Rain canvas + atmosphere ---------- */
#rain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(43, 182, 242, 0.16), transparent 60%),
    radial-gradient(1100px 700px at 10% 110%, rgba(17, 123, 189, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(6, 9, 15, 0.2), rgba(6, 9, 15, 0.72));
}

/* keep all real content above the rain */
.site-header, main, .site-footer { position: relative; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-hi), var(--blue) 55%, var(--blue-deep));
  color: #04121d;
  box-shadow: 0 10px 30px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { box-shadow: 0 16px 40px -12px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-hi); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6,9,15,0.85), rgba(6,9,15,0.55));
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 76px;
}
.brand-logo { height: 52px; width: auto; }
.brand { display: inline-flex; align-items: center; }

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.75rem;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.btn-phone {
  background: rgba(43, 182, 242, 0.08);
  border: 1px solid var(--line);
  color: var(--blue-hi);
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}
.btn-phone:hover { border-color: var(--blue); background: rgba(43, 182, 242, 0.14); }

/* ---------- Hero ---------- */
.hero { padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--blue-hi);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(43,182,242,0.06);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 1.4rem 0 1.3rem;
  text-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.hero-title .accent {
  color: var(--blue);
  -webkit-text-stroke: 0.5px rgba(111, 210, 255, 0.4);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
.hero-badges li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 9px; height: 9px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* hero card */
.hero-card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 110% -10%, rgba(43,182,242,0.18), transparent 60%);
  pointer-events: none;
}
.card-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--blue-hi);
  font-weight: 700;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.85rem;
  line-height: 1;
  margin: 0.4rem 0 0.8rem;
}
.card-text { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.4rem; }

.card-contact { display: grid; gap: 0.9rem; margin-bottom: 1.5rem; }
.card-contact dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 0.15rem;
}
.card-contact dd { font-weight: 700; font-size: 1.05rem; }
.card-contact a:hover { color: var(--blue-hi); }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}
.section-sub { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.service-card {
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-hi), var(--blue-deep));
  transition: width 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,0.85);
}
.service-card:hover::after { width: 100%; }

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(43,182,242,0.1);
  border: 1px solid var(--line);
  color: var(--blue-hi);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }

.service-card--cta {
  background: linear-gradient(165deg, rgba(43,182,242,0.12), rgba(17,123,189,0.06));
  border-color: var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.link-arrow {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--blue-hi);
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; }

/* ---------- Why ---------- */
.why { background: linear-gradient(180deg, transparent, rgba(10,17,25,0.6)); }
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-head { margin-bottom: 0; }
.why-head .btn { margin-top: 1.6rem; }

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-list li {
  background: var(--panel);
  padding: 1.7rem 1.5rem;
}
.feature-stat {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--blue-hi);
  display: block;
  margin-bottom: 0.5rem;
}
.feature-list p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Process ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}
.steps li {
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  position: relative;
}
.step-no {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--blue);
  display: block;
  margin-bottom: 0.8rem;
}
.steps h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.steps p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Quote ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.quote-info .section-num { margin-top: 0; }
.quote-contact { display: grid; gap: 1.2rem; margin-top: 2rem; }
.quote-contact dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
}
.quote-contact dd { font-weight: 700; font-size: 1.15rem; }
.quote-contact a:hover { color: var(--blue-hi); }

.quote-form {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; margin-bottom: 1.1rem; }
.field span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: rgba(4, 9, 15, 0.55);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,182,242,0.16);
}
.field select { appearance: none; cursor: pointer; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.ok { color: var(--blue-hi); }
.form-status.err { color: #ff8c8c; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, transparent, rgba(4,8,13,0.9));
  margin-top: clamp(2rem, 6vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--ink-soft); max-width: 40ch; font-size: 0.95rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-cols h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.footer-cols ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-cols a { color: var(--ink-soft); font-size: 0.93rem; transition: color 0.2s var(--ease); }
.footer-cols a:hover { color: var(--blue-hi); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line-soft);
  margin-top: 0.5rem;
  color: var(--ink-mute);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .why-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav { display: none; }
  .header-inner { gap: 0.8rem; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 0.6rem 0.75rem; }
  .service-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
