:root {
  --green: #2bae76;
  --green-dark: #1d8b5c;
  --teal: #052622;
  --teal-soft: #0d3a35;
  --cream: #ebebe1;
  --mint: #a8e6cf;
  --mist: #f5f5f0;
  --white: #ffffff;
  --ink: #141817;
  --muted: #66736f;
  --line: #dce4db;
  --gold: #f4b84a;
  --shadow: 0 24px 70px rgba(5, 38, 34, 0.18);
  --radius: 8px;
  --font-heading: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 219, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #33413d;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 26px rgba(43, 174, 118, 0.26);
}

.btn.secondary {
  color: var(--teal);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn.secondary.dark,
.btn.outline {
  color: var(--teal);
  background: transparent;
  border-color: var(--line);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 38, 34, 0.94), rgba(5, 38, 34, 0.72) 48%, rgba(5, 38, 34, 0.56)),
    linear-gradient(180deg, rgba(5, 38, 34, 0.16), rgba(5, 38, 34, 0.86));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 7vw, 94px);
  max-width: 1240px;
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 56px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--mint);
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-proof div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
}

.hero-proof span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.command-card {
  align-self: end;
  padding: 18px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.command-top,
.app-header,
.mini-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.command-top {
  margin-bottom: 14px;
}

.command-top span,
.screen-head span,
.visit-status small,
.roadmap span,
.service-card span,
.standard-steps span {
  display: inline-flex;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.command-top strong {
  font-family: var(--font-heading);
}

.phone-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.app-header img {
  width: 112px;
  height: auto;
}

.app-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.visit-status {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(43, 174, 118, 0.3);
  border-radius: var(--radius);
}

.visit-status strong,
.visit-status span {
  display: block;
}

.visit-status strong {
  margin-top: 4px;
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.1;
}

.visit-status span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.cleaning-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cleaning-path span {
  height: 8px;
  background: #dce4db;
  border-radius: 999px;
}

.cleaning-path .done {
  background: var(--green);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mini-grid div {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid span {
  color: var(--muted);
  font-size: 12px;
}

section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 56px);
}

.intro,
.process {
  background: var(--mist);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.08;
}

.section-grid p,
.section-heading > p,
.app-copy > p,
.standard-copy > p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-copy {
  display: grid;
  gap: 22px;
}

.intro-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.intro-list span {
  padding: 14px 16px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .section-label {
  justify-content: center;
}

.section-heading h2 + p {
  margin-top: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: var(--cream);
}

.feature-service {
  grid-row: span 2;
}

.feature-service img {
  aspect-ratio: 1.18;
}

.service-card div {
  padding: 24px;
}

.service-card h3 {
  margin: 7px 0 10px;
  color: var(--teal);
  font-size: 24px;
  line-height: 1.2;
}

.service-card p,
.review-grid p,
.process-grid p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.service-card p {
  margin: 0;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
}

.service-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
}

.service-note {
  display: grid;
  align-content: end;
  min-height: 280px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 38, 34, 0.1), rgba(5, 38, 34, 0.88)),
    url("assets/cleaning-tools.jpg") center / cover;
}

.service-note h3,
.service-note p {
  color: var(--white);
}

.service-note p {
  color: rgba(255, 255, 255, 0.76);
}

.standard,
.app-band {
  display: grid;
  align-items: center;
  gap: clamp(30px, 7vw, 86px);
  background: var(--teal);
}

.standard {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.standard-copy,
.app-copy {
  max-width: 720px;
}

.on-dark,
.standard-copy h2,
.app-copy h2 {
  color: var(--mint);
}

.standard-copy > p,
.app-copy > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

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

.standard-steps article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: var(--radius);
}

.standard-steps h3 {
  margin: 60px 0 10px;
  color: var(--white);
  font-size: 22px;
}

.standard-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.app-band {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
}

.roadmap {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.roadmap div {
  padding: 18px 0;
  border-top: 1px solid rgba(168, 230, 207, 0.22);
}

.roadmap strong,
.roadmap p {
  display: block;
}

.roadmap strong {
  margin-top: 5px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 19px;
}

.roadmap p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.phone-shell {
  width: min(360px, 86vw);
  min-height: 600px;
  justify-self: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 38px;
  background: #111815;
  box-shadow: var(--shadow);
}

.phone-screen {
  height: 100%;
  min-height: 572px;
  padding: 34px 24px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(168, 230, 207, 0.28), transparent 42%),
    var(--mist);
}

.screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-screen img {
  width: 126px;
  height: auto;
}

.screen-head span {
  padding: 7px 10px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.screen-kicker {
  margin: 54px 0 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 0;
  color: var(--teal);
  font-size: 30px;
  line-height: 1.1;
}

.progress {
  height: 10px;
  margin: 24px 0;
  overflow: hidden;
  background: #dce4db;
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--green);
}

.phone-screen ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.phone-screen li {
  padding: 14px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.soon-badge {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius);
}

.reviews {
  background: var(--mist);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.review-grid article {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-grid article > span {
  position: absolute;
  top: 6px;
  left: 22px;
  color: rgba(43, 174, 118, 0.14);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
}

.review-grid p,
.review-grid strong {
  position: relative;
}

.review-grid p {
  margin: 16px 0 20px;
}

.review-grid strong {
  color: var(--green-dark);
  font-family: var(--font-heading);
}

.faq {
  background: var(--white);
}

.faq-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 28px;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--teal);
  background: var(--white);
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.accordion-item button span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 24px;
  transition: transform 180ms ease;
}

.accordion-item.open button span {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 22px;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel p {
  padding-bottom: 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 48px);
  color: var(--teal);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel p {
  max-width: 680px;
  margin-top: 14px;
}

.contact-details {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(5, 38, 34, 0.16);
}

.contact-details span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.35;
}

.contact-details a {
  color: inherit;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) minmax(220px, 0.8fr) auto;
  gap: 28px;
  align-items: start;
  padding: 46px clamp(20px, 5vw, 56px);
  color: var(--white);
  background: var(--teal);
}

.footer-brand img {
  width: 132px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--mint);
}

.copyright {
  justify-self: end;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .standard-steps {
    grid-template-columns: 1fr;
  }

  .standard-steps article {
    min-height: auto;
  }

  .standard-steps h3 {
    margin-top: 28px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a {
    padding: 12px 0;
  }

  .hero-inner,
  .standard,
  .app-band,
  .section-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .command-card {
    align-self: center;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .feature-service {
    grid-row: span 1;
  }

  .contact-panel .btn {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero-actions,
  .faq-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .faq-heading .btn,
  .contact-panel .btn {
    width: 100%;
  }

  .hero-proof,
  .intro-list,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .command-card,
  .service-card div,
  .review-grid article,
  .contact-panel {
    padding: 22px;
  }

  .phone-shell {
    min-height: 540px;
  }

  .phone-screen {
    min-height: 512px;
  }
}
