/* ---------------------------------------------
   Spotless Buddies — design tokens
   Ink:    #101B2D  deep navy, hero/footer bg
   Paper:  #FAFAF7  warm near-white, body bg
   Aqua:   #1FA98B  primary accent (clean/fresh)
   Coral:  #FF6A4D  secondary accent (CTA highlights)
   Slate:  #5B6672  secondary text
   Line:   #E3E6E1  hairline borders
--------------------------------------------- */

:root {
  --ink: #101B2D;
  --ink-soft: #17253B;
  --paper: #FAFAF7;
  --aqua: #1FA98B;
  --aqua-dim: #16332C;
  --coral: #FF6A4D;
  --slate: #5B6672;
  --line: #E3E6E1;
  --line-dark: #24344C;
  --text: #14202B;
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--aqua);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--aqua);
  color: #06231D;
}
.btn-primary:hover { background: #23c19f; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  opacity: 0.85;
}
.btn-ghost:hover { opacity: 1; border-color: var(--aqua); }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--coral);
  color: #2B0E06;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 28px;
  font-size: 0.84rem;
  font-weight: 600;
}
.top-bar-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2B0E06;
  margin-right: 8px;
  vertical-align: middle;
}
.top-bar-inner a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 27, 45, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: var(--paper);
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
  white-space: nowrap;
}
.logo span { color: var(--aqua); }

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.94rem;
}
.main-nav a { opacity: 0.82; transition: opacity 0.15s ease; }
.main-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--paper);
  opacity: 0.9;
}
.phone-link:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 76px 0 88px;
  overflow: hidden;
  position: relative;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  opacity: 0.35;
}
.hero::before {
  width: 340px; height: 340px;
  background: var(--aqua);
  top: -120px; right: -60px;
}
.hero::after {
  width: 260px; height: 260px;
  background: var(--coral);
  bottom: -100px; left: 8%;
  opacity: 0.2;
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aqua-dim);
  border: 1px solid var(--aqua);
  color: var(--aqua);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
  max-width: 15ch;
}
.hero-sub {
  font-size: 1.08rem;
  color: #C7CFDA;
  max-width: 46ch;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-ctas .btn-ghost { color: var(--paper); }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--paper);
}
.stat-label {
  font-size: 0.82rem;
  color: #8892A0;
  margin-top: 2px;
}

/* Hero checklist panel */
.hero-panel {
  display: flex;
  justify-content: center;
}
.checklist-card {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 26px 24px 22px;
  width: 100%;
  max-width: 320px;
  transform: rotate(1.2deg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.checklist-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.checklist-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 3px var(--aqua-dim);
}
.checklist-head p {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--paper);
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #C7CFDA;
  padding: 7px 0;
}
.check {
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--aqua-dim);
  border: 1px solid var(--aqua);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
  transform: rotate(40deg);
}
.checklist-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
  color: #6E7887;
}

/* ---------- Icon badge (shared) ---------- */
.icon-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge--aqua { background: var(--aqua-dim); color: var(--aqua); }
.icon-badge--coral { background: #3A1B12; color: var(--coral); }

/* ---------- Trust strip ---------- */
.trust {
  background: #F1EFE7;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-card .icon-badge { width: 40px; height: 40px; border-radius: 10px; }
.trust-card .icon-badge svg { width: 19px; height: 19px; }

/* ---------- Section head ---------- */
section { padding: 92px 0; }
.section-head {
  max-width: 46ch;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.5;
}

/* ---------- Services ---------- */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.15s ease;
}
.service-row .service-info { flex: 1; }
.service-row::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.15s ease;
}
.service-row:hover { background: #F3F5F0; }
.service-row:hover::before { background: var(--aqua); }
.service-info h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.service-info p {
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 52ch;
}
.service-price {
  flex: none;
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
}
.service-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: lowercase;
}

/* ---------- How it works ---------- */
.how { background: #F1EFE7; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-num--aqua { background: var(--aqua); color: #06231D; }
.step-num--coral { background: var(--coral); color: #2B0E06; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 0.95rem; line-height: 1.5; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.testimonial::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(90px);
  opacity: 0.18;
  top: -80px; right: 10%;
}
.testimonial-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 22px;
}
.attribution { color: #8892A0; font-size: 0.95rem; }

/* ---------- Service area ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.area-chips li {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--text);
}
.area-chips li:first-child {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-weight: 600;
}
.area-note { color: var(--slate); font-size: 0.92rem; }

/* ---------- CTA / Contact ---------- */
.cta { background: #F1EFE7; }
.cta-inner { max-width: 640px; }
.cta h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 16px; }
.cta p { color: var(--slate); font-size: 1.02rem; margin-bottom: 40px; }
.contact-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 260px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.contact-method:hover { border-color: var(--aqua); transform: translateY(-2px); }
.contact-text { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: 0.8rem; color: var(--slate); }
.contact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--coral);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #8892A0;
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 20px;
}
.footer-nav { display: flex; gap: 22px; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--paper); }
.footer-meta { font-size: 0.86rem; text-align: right; line-height: 1.6; }
.copyright { font-size: 0.8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .top-bar-inner { font-size: 0.78rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 8px 28px 20px;
    border-bottom: 1px solid var(--line-dark);
  }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { order: -1; margin-bottom: 8px; }
  .checklist-card { max-width: 100%; transform: none; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .service-row { flex-wrap: wrap; gap: 12px; }
  .service-row .service-info { order: 3; flex-basis: 100%; }
  .service-price { text-align: left; margin-left: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 520px) {
  .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .trust-grid { grid-template-columns: 1fr; }
  .header-actions .phone-link { display: none; }
  .hero { padding: 56px 0 64px; }
  section { padding: 64px 0; }
  .hero-stats { flex-wrap: wrap; row-gap: 16px; }
  .stat { padding-right: 20px; margin-right: 20px; }
  .trust-inner { gap: 8px 24px; font-size: 0.82rem; }
}
