:root {
    --ink: #1f2130;
    --purple: #5f4b8b;
    --purple-dark: #33274f;
    --lavender: #e9e3f5;
    --cream: #f8f5ef;
    --lime: #d6f36a;
    --white: #fff;
    --muted: #777485;
    --border: rgba(31, 33, 48, .12);
    --shadow: 0 28px 80px rgba(51, 39, 79, .15)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden
}

h1,
h2,
h3,
.brand strong {
    font-family: "Playfair Display", serif
}

h1 {
    font-size: clamp(4rem, 7vw, 7.8rem);
    line-height: .92;
    letter-spacing: -.05em
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.045em
}

p {
    color: var(--muted);
    line-height: 1.75
}

.section-space {
    padding: 130px 0
}

.container-xl {
    max-width: 1420px
}

.navbar {
    padding: 20px 0;
    transition: .3s;
    z-index: 1050
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(248, 245, 239, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(31, 33, 48, .08)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--purple-dark);
    color: #fff;
    font-family: "Playfair Display";
    font-size: 1.4rem
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-copy strong {
    font-size: 1.05rem;
    color: var(--ink)
}

.brand-copy small {
    margin-top: 7px;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted)
}

.nav-link {
    font-weight: 700;
    color: var(--ink);
    font-size: .92rem
}

.btn {
    border-radius: 100px;
    font-weight: 700;
    padding: .9rem 1.45rem
}

.btn-primary-custom {
    background: var(--purple-dark);
    color: #fff;
    border: 0;
    box-shadow: 0 14px 30px rgba(51, 39, 79, .2)
}

.btn-primary-custom:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px)
}

.btn-secondary-custom {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ink)
}

.mobile-nav {
    display: grid;
    gap: 18px
}

.mobile-nav a:not(.btn) {
    font-size: 1.35rem;
    text-decoration: none;
    color: var(--ink)
}

.hero {
    padding: 145px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5ef 0%, #eee8f7 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    align-items: center
}

.hero-copy {
    padding-right: 35px
}

.eyebrow,
.section-index {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--purple);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.hero-copy p {
    font-size: 1.15rem;
    max-width: 630px;
    margin: 26px 0 32px
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
    font-size: .86rem;
    font-weight: 700
}

.hero-trust i {
    color: var(--purple);
    margin-right: 6px
}

.hero-media {
    position: relative;
    min-height: 690px
}

.hero-image-main {
    position: absolute;
    inset: 0 80px 70px 0;
    margin: 0;
    border-radius: 220px 220px 35px 35px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-card {
    position: absolute;
    right: 0;
    top: 105px;
    width: 245px;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow)
}

.hero-card span,
.hero-card strong,
.hero-card small {
    display: block
}

.hero-card span {
    font-size: .7rem;
    color: var(--purple);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em
}

.hero-card strong {
    margin: 9px 0;
    font-size: 1.15rem
}

.hero-card small {
    color: var(--muted)
}

.hero-mini-image {
    position: absolute;
    right: 10px;
    bottom: 0;
    width: 220px;
    height: 270px;
    border: 10px solid var(--cream);
    border-radius: 30px;
    overflow: hidden
}

.hero-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-quote {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--border)
}

.hero-quote>span {
    font-family: "Playfair Display";
    font-size: 4rem;
    color: var(--purple)
}

.hero-quote p {
    margin: 0;
    font-family: "Playfair Display";
    font-size: 1.4rem;
    color: var(--ink)
}

.trust-bar {
    overflow: hidden;
    background: var(--purple-dark);
    padding: 20px 0
}

.trust-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    color: #fff;
    animation: marquee 26s linear infinite
}

.trust-track span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .15em
}

.trust-track i {
    color: var(--lime)
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.section-heading {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 40px;
    margin-bottom: 60px
}

.services-section {
    background: #fff
}

.services-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px
}

.service-feature {
    position: relative;
    min-height: 700px;
    border-radius: 36px;
    overflow: hidden
}

.service-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(31, 33, 48, .88))
}

.service-overlay {
    position: absolute;
    z-index: 2;
    left: 40px;
    right: 40px;
    bottom: 36px;
    color: #fff
}

.service-overlay span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--lime)
}

.service-overlay h3 {
    font-size: 2.6rem;
    margin: 12px 0
}

.service-overlay p {
    color: rgba(255, 255, 255, .72)
}

.service-overlay a {
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.service-list {
    display: flex;
    flex-direction: column
}

.service-row {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    gap: 18px;
    align-items: center;
    flex: 1;
    padding: 25px 0;
    border-bottom: 1px solid var(--border)
}

.service-number {
    font-size: .72rem;
    color: var(--purple);
    font-weight: 800
}

.service-row h3 {
    margin: 0 0 7px
}

.service-row p {
    margin: 0
}

.service-row>i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border)
}

.process-section {
    background: var(--purple-dark);
    color: #fff
}

.section-index.light {
    color: var(--lime)
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: rgba(255, 255, 255, .12)
}

.process-step {
    padding: 40px;
    background: var(--purple-dark)
}

.process-step>span {
    font-size: .7rem;
    color: var(--lime);
    font-weight: 800
}

.process-step i {
    display: block;
    font-size: 2rem;
    margin: 34px 0
}

.process-step p {
    color: rgba(255, 255, 255, .62)
}

.calculator-section {
    background: var(--lavender)
}

.calculator-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.calculator-card {
    padding: 42px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow)
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.calculator-card label {
    display: grid;
    gap: 8px;
    font-size: .78rem;
    font-weight: 800
}

.calculator-card select {
    height: 54px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0 14px;
    background: #fff
}

.estimate-box {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    border-radius: 20px;
    background: var(--cream)
}

.estimate-box strong {
    font-family: "Playfair Display";
    font-size: 3rem;
    color: var(--purple-dark)
}

.before-after {
    background: #fff
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.comparison-card {
    position: relative;
    height: 560px;
    border-radius: 30px;
    overflow: hidden
}

.comparison-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.comparison-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(31, 33, 48, .82))
}

.comparison-card>div {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 26px;
    color: #fff
}

.comparison-card span {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lime)
}

.comparison-card h3 {
    font-size: 2rem
}

.comparison-light {
    margin-top: 70px
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.plan-card {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border)
}

.plan-card.featured {
    background: var(--purple);
    color: #fff;
    transform: translateY(-18px);
    box-shadow: var(--shadow)
}

.plan-card.featured p,
.plan-card.featured li {
    color: rgba(255, 255, 255, .72)
}

.plan-type {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--purple)
}

.featured .plan-type {
    color: var(--lime)
}

.plan-card>strong {
    display: block;
    font-family: "Playfair Display";
    font-size: 2.4rem;
    margin: 30px 0
}

.plan-card ul {
    padding-left: 18px;
    line-height: 2
}

.plan-card a {
    color: var(--purple);
    font-weight: 800;
    text-decoration: none
}

.featured a {
    color: var(--lime)
}

.plan-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 12px;
    border-radius: 50px;
    background: var(--lime);
    color: var(--purple-dark);
    font-size: .68rem;
    font-weight: 800
}

.business-section {
    background: var(--purple-dark)
}

.business-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 690px;
    border-radius: 36px;
    overflow: hidden
}

.business-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.business-copy {
    padding: 70px;
    color: #fff;
    background: var(--purple)
}

.business-copy p {
    color: rgba(255, 255, 255, .7)
}

.business-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0
}

.business-benefits i {
    color: var(--lime)
}

.coverage-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 65px;
    border-radius: 34px;
    color: #fff;
    background: linear-gradient(120deg, rgba(51, 39, 79, .97), rgba(95, 75, 139, .94)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover
}

.coverage-card p {
    color: rgba(255, 255, 255, .7)
}

.coverage-search {
    display: flex;
    max-width: 580px;
    margin: 28px 0 20px
}

.coverage-search input {
    flex: 1;
    height: 56px;
    border: 0;
    border-radius: 14px 0 0 14px;
    padding: 0 16px
}

.coverage-search button {
    border: 0;
    border-radius: 0 14px 14px 0;
    background: var(--lime);
    color: var(--purple-dark);
    padding: 0 22px;
    font-weight: 800
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.coverage-tags span {
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    font-size: .78rem
}

.coverage-symbol {
    font-size: 4rem;
    color: var(--lime)
}

.faq-section {
    background: var(--lavender)
}

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent
}

.accordion-button {
    padding: 24px 0;
    background: transparent;
    font-weight: 800
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--purple);
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none
}

.accordion-body {
    padding: 0 0 24px;
    color: var(--muted)
}

.pickup-section {
    background: var(--purple-dark);
    color: #fff
}

.pickup-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.pickup-copy p {
    color: rgba(255, 255, 255, .66)
}

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

.pickup-contact i {
    color: var(--lime);
    margin-right: 8px
}

.pickup-form {
    display: grid;
    gap: 16px;
    padding: 40px;
    border-radius: 30px;
    background: #fff;
    color: var(--ink)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.pickup-form label {
    display: grid;
    gap: 8px;
    font-size: .78rem;
    font-weight: 800
}

.pickup-form input,
.pickup-form select,
.pickup-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 15px;
    font: inherit
}

footer {
    background: #18141f;
    color: #fff;
    padding: 70px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-grid>div>span {
    font-size: .7rem;
    color: var(--lime);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
}

.footer-grid a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none
}

.footer-grid p {
    color: rgba(255, 255, 255, .5);
    margin: 0
}

.footer-logo {
    font-family: "Playfair Display";
    font-size: 1.5rem !important;
    color: #fff !important
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4)
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 16px 38px rgba(37, 211, 102, .35)
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .75s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-delay {
    transition-delay: .12s
}

@media(max-width:991.98px) {
    .navbar {
        background: rgba(248, 245, 239, .92);
        backdrop-filter: blur(18px)
    }

    .hero-grid,
    .calculator-layout,
    .business-layout,
    .faq-layout,
    .pickup-layout {
        grid-template-columns: 1fr
    }

    .hero-media {
        min-height: 620px
    }

    .services-layout {
        grid-template-columns: 1fr
    }

    .process-line {
        grid-template-columns: 1fr 1fr
    }

    .field-grid {
        grid-template-columns: 1fr
    }

    .plans-grid {
        grid-template-columns: 1fr
    }

    .featured {
        transform: none !important
    }

    .business-photo {
        min-height: 500px
    }

    .comparison-grid {
        grid-template-columns: 1fr
    }

    .comparison-light {
        margin-top: 0
    }

    .coverage-symbol {
        display: none
    }

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

.navbar {
  border-bottom: 1px solid rgba(31, 33, 48, 0.1);
}

.navbar.scrolled {
  border-bottom-color: rgba(31, 33, 48, 0.16);
}

.laundry-menu {
  margin-right: 22px;
 
}

.laundry-menu .nav-item {
  position: relative;
}

.laundry-menu .nav-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 26px;

  background: rgba(31, 33, 48, 0.12);

  transform: translateY(-50%);
}

.laundry-menu .nav-link {
  position: relative;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 25px 18px;

  color: var(--ink);

  font-size: 0.92rem;
  font-weight: 700;

  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.laundry-menu .nav-link::after {
  content: "";

  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;

  height: 2px;

  background: var(--purple);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.25s ease;
}

.laundry-menu .nav-link i {
  color: var(--purple);
  font-size: 0.95rem;

  transition: transform 0.25s ease;
}

.laundry-menu .nav-link:hover {
  color: var(--purple);
  background: rgba(95, 75, 139, 0.05);
}

.laundry-menu .nav-link:hover::after {
  transform: scaleX(1);
}

.laundry-menu .nav-link:hover i {
  transform: translateY(-2px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  white-space: nowrap;
}

@media (max-width: 1199.98px) {
  .laundry-menu .nav-link {
    padding-right: 12px;
    padding-left: 12px;
  }

  .laundry-menu .nav-link span {
    font-size: 0.75rem;
  }
}

.laundry-benefits {
  padding: 38px 0 100px;

  background:
    linear-gradient(
      180deg,
      #eee8f7 0%,
      var(--cream) 100%
    );
}

.benefits-panel {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);

  min-height: 330px;

  border-radius: 34px;
  overflow: hidden;

  box-shadow: var(--shadow);
}

.benefit-intro,
.benefit-item {
  position: relative;

  padding: 38px;

  overflow: hidden;
}

.benefit-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(51, 39, 79, 0.96),
      rgba(95, 75, 139, 0.92)
    ),
    url(
      "https://images.unsplash.com/photo-1582735689369-4fe89db7114c?auto=format&fit=crop&w=1000&q=85"
    )
    center / cover;
}

.benefit-intro::before {
  content: "";

  position: absolute;
  top: -80px;
  right: -80px;

  width: 210px;
  height: 210px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.benefit-label {
  position: relative;

  margin-bottom: 18px;

  color: var(--lime);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.benefit-intro h2 {
  position: relative;

  max-width: 510px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.2rem, 3.5vw, 4rem);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 330px;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
}

.benefit-purple {
  color: #ffffff;
  background: var(--purple);
}

.benefit-purple p {
  color: rgba(255, 255, 255, 0.68);
}

.benefit-light {
  color: var(--ink);
  background: #ffffff;
}

.benefit-dark {
  color: #ffffff;
  background: var(--purple-dark);
}

.benefit-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.benefit-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  opacity: 0.55;
}

.benefit-item > i {
  margin: auto 0 28px;

  font-size: 2.2rem;
}

.benefit-purple > i,
.benefit-dark > i {
  color: var(--lime);
}

.benefit-light > i {
  color: var(--purple);
}

.benefit-item h3 {
  margin-bottom: 10px;

  font-size: 1.45rem;
}

.benefit-item p {
  margin: 0;

  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .benefits-panel {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-intro {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .laundry-benefits {
    padding-bottom: 75px;
  }

  .benefits-panel {
    grid-template-columns: 1fr;
  }

  .benefit-intro,
  .benefit-item {
    min-height: 290px;
  }
}

.laundry-chat {
  position: fixed;
  z-index: 1040;

  right: 24px;
  bottom: 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.laundry-chat-message {
  position: relative;

  width: 285px;

  padding: 20px 22px;

  color: var(--ink);
  background: #ffffff;

  border: 1px solid rgba(31, 33, 48, 0.09);
  border-radius: 22px 22px 5px 22px;

  box-shadow:
    0 22px 55px rgba(51, 39, 79, 0.2);

  animation: chatFloat 4s ease-in-out infinite;
}

.laundry-chat-message::after {
  content: "";

  position: absolute;
  right: 24px;
  bottom: -8px;

  width: 18px;
  height: 18px;

  background: #ffffff;

  transform: rotate(45deg);
}

.chat-brand {
  display: block;

  margin-bottom: 7px;

  color: var(--purple);

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.laundry-chat-message strong,
.laundry-chat-message small {
  display: block;
}

.laundry-chat-message strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.laundry-chat-message small {
  margin-top: 6px;

  color: var(--muted);
}

.chat-close {
  position: absolute;
  top: 8px;
  right: 9px;

  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  padding: 0;

  color: var(--muted);
  background: transparent;

  border: 0;
  border-radius: 50%;
}

.laundry-chat-button {
  min-width: 285px;

  display: grid;
  grid-template-columns: 48px 1fr 35px;
  align-items: center;
  gap: 12px;

  padding: 11px 14px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--purple-dark),
      var(--purple)
    );

  border-radius: 22px;

  text-decoration: none;

  box-shadow:
    0 18px 42px rgba(51, 39, 79, 0.32);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.laundry-chat-button:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow:
    0 24px 48px rgba(51, 39, 79, 0.4);
}

.chat-logo {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color: var(--purple-dark);
  background: var(--lime);

  border-radius: 50%;

  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.chat-button-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.chat-button-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

.chat-button-copy strong {
  margin-top: 5px;

  font-size: 0.87rem;
}

.laundry-chat-button > i {
  font-size: 1.3rem;
  color: var(--lime);
}

@keyframes chatFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 575.98px) {
  .laundry-chat {
    right: 16px;
    bottom: 16px;
  }

  .laundry-chat-message {
    display: none;
  }

  .laundry-chat-button {
    min-width: 0;
    width: 60px;
    height: 60px;

    display: grid;
    grid-template-columns: 1fr;
    place-items: center;

    padding: 0;

    border-radius: 50%;
  }

  .chat-logo,
  .chat-button-copy {
    display: none;
  }

  .laundry-chat-button > i {
    font-size: 1.5rem;
  }
}

@media(max-width:767.98px) {
    .section-space {
        padding: 90px 0
    }

    .hero {
        padding-top: 120px
    }

    .hero-grid {
        display: block
    }

    .hero-copy {
        padding-right: 0
    }

    .hero-media {
        min-height: 560px;
        margin-top: 45px
    }

    .hero-image-main {
        inset: 0 40px 80px 0
    }

    .hero-card {
        right: 0;
        top: 60px;
        width: 210px
    }

    .hero-mini-image {
        width: 170px;
        height: 220px
    }

    .hero-quote {
        margin-top: 35px
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .service-feature {
        min-height: 560px
    }

    .process-line {
        grid-template-columns: 1fr
    }

    .estimate-box {
        display: block
    }

    .comparison-card {
        height: 430px
    }

    .business-copy {
        padding: 42px 28px
    }

    .business-benefits {
        grid-template-columns: 1fr
    }

    .coverage-card {
        padding: 40px 26px
    }

    .coverage-search {
        display: block
    }

    .coverage-search input,
    .coverage-search button {
        width: 100%;
        border-radius: 14px
    }

    .coverage-search button {
        height: 52px;
        margin-top: 10px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .pickup-form {
        padding: 24px
    }

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

    .footer-bottom {
        display: block
    }

    .footer-bottom small {
        display: block;
        margin-top: 8px
    }
}