/* ==========================================================================
   demo-cleaning.css — "Sparrow Clean"
   Bright white with a fresh teal. Friendly, rounded Nunito over an even
   Nunito Sans. Warm and trustworthy: bonded & insured, guaranteed, easy to
   book. Soft pills and generous corners; the whole page should feel scrubbed.
   ========================================================================== */

:root {
  --d-bg:         #F6FBFA;
  --d-ink:        #12302B;
  --d-muted:      #5B7A73;
  --d-accent:     #12A594;
  --d-accent-ink: #FFFFFF;
  --d-surface:    #E6F4F1;
  --d-line:       rgba(18, 48, 43, .12);
  --d-line-strong:rgba(18, 48, 43, .24);

  --d-sans:    'Nunito Sans', system-ui, sans-serif;
  --d-display: 'Nunito', system-ui, sans-serif;
  --d-radius:  18px;
  --d-max:     1120px;
}

/* Rounded display face carries a heavier weight cleanly. */
.dnav__brand { font-weight: 800; letter-spacing: -.02em; }
.dh2, .dhero__title { font-weight: 800; }
.dh3 { font-weight: 800; }
.dlede { font-size: 18px; }

/* Kicker keeps the teal from the kit; a hair more spacing for the rounded face. */
.dkicker { letter-spacing: .18em; }

/* Cards lift a touch off the bright ground. */
.dcard { box-shadow: 0 1px 0 rgba(18, 48, 43, .04); }

/* Friendly rounded pill — the one decorative flourish, used for reassurances
   like "Bonded & insured" and "Satisfaction guaranteed". */
.dbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--d-accent);
  background: var(--d-surface);
  border: 1.5px solid var(--d-accent);
  border-radius: 999px;
  padding: 8px 16px;
}

/* Trust row — the three promises shown above the fold on Home. */
.dtrust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dtrust__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
}
.dtrust__tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--d-accent);
  color: var(--d-accent-ink);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
@media (max-width: 620px) { .dtrust { grid-template-columns: 1fr; gap: 11px; } }

/* Pricing tiers on the Services page. */
.dtier__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.dtier__from {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--d-muted);
  margin-bottom: 1px;
}
.dtier__price {
  font-family: var(--d-display);
  font-weight: 800;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--d-accent);
  white-space: nowrap;
}

/* Ticked "what's included" list inside each tier card. */
.dincl {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.dincl li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--d-ink);
}
.dincl li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--d-accent);
  color: var(--d-accent-ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 19px;
  text-align: center;
}
