*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit
}

html {
    scroll-behavior: smooth
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
    display: initial
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-inline-size: 100%
}

input,
button,
textarea,
select {
    font: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    color: currentColor
}

ol,
ul {
    list-style: none
}

html {
    font-size: 62.5%
}

@media only screen and (max-width: 62em) {
    html {
        font-size: 56.25%
    }
}

@media only screen and (max-width: 28.125em) {
    html {
        font-size: 50%
    }
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    line-height: 1.4
}

.heading {
    line-height: 1.2
}

.heading--primary {
    font-size: 3.6rem
}

.heading--secondary {
    font-size: 2.4rem
}

.heading--changing {
    font-size: 3.6rem
}

@media only screen and (max-width: 62em) {
    .heading--changing {
        font-size: 2.4rem
    }
}

.u-container {
    max-width: 120rem;
    margin: 0 auto
}

.u-margin-bottom-sm {
    margin-bottom: 1.6rem
}

.u-margin-bottom-md {
    margin-bottom: 2.4rem
}

.u-margin-bottom-lg {
    margin-bottom: 3.2rem
}

.u-margin-bottom-xl {
    margin-bottom: 4.8rem
}

.u-margin-bottom-2xl {
    margin-bottom: 6.4rem
}

.u-margin-bottom-3xl {
    margin-bottom: 8rem
}

.u-text-white {
    color: #fff
}

.u-text-green {
    color: #37b24d
}

.u-text-center {
    text-align: center
}

.banner {
    font-size: 1.4rem;
    color: #373737;
    text-align: center;
    padding: 1.2rem;
    background-color: #f3f3f3;
    display: none
}

@media only screen and (max-width: 62em) {
    .banner {
        display: block
    }
}

.btn,
.btn:link,
.btn:visited {
    display: block;
    font-weight: 600;
    padding: 1.6rem 3.2rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out
}

.btn--primary,
.btn--primary:link,
.btn--primary:visited {
    color: #fff;
    background: #32cd32
}

.btn--primary:hover,
.btn--primary:active {
    background: #2db92d
}

.btn--gradient,
.btn--gradient:link,
.btn--gradient:visited {
    color: #fff;
    background: linear-gradient(#32cd32, #37b24d)
}

.btn--gradient:hover,
.btn--gradient:active {
    background: linear-gradient(#32cd32, #37b24d)
}

.card {
    border-radius: 30px 0 0 0;
    overflow: hidden
}

.card__body {
    padding: 1.6rem;
    background-color: #fff
}

.card__title {
    font-size: 1.8rem
}

.cta {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width: 50em) {
    .cta {
        flex-direction: column
    }
}

.cta__message {
    text-align: center
}

.cta__message--text {
    display: block;
    font-size: 1.4rem;
    margin: 0.5rem
}

.cta__message--number {
    font-weight: 500;
    font-size: 3.2rem
}

.cta-footer {
    display: none;
    position: sticky;
    bottom: 0;
    text-align: center;
    padding: 1.2rem;
    background-color: #32cd32
}

@media only screen and (max-width: 62em) {
    .cta-footer {
        display: block
    }
}

.cta-footer__link:link,
.cta-footer__link:visited {
    font-weight: 600;
    color: #fff;
    text-decoration: none
}

.form {
    padding: 2.4rem;
    background-color: #1f2c34
}

.form__title {
    font-size: 1.8rem
}

.form__label {
    display: inline-block;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.2rem
}

.form__input {
    width: 100%;
    padding: 1.2rem;
    border: none;
    outline: none;
    background: #fff;
    color: #373737
}

.form__input:focus {
    box-shadow: 0 0 0 2px inset #32cd32
}

.form__input::-moz-placeholder {
    color: #373737
}

.form__input::placeholder {
    color: #373737
}

.form .btn {
    width: 100%
}

.header {
    padding: 3.2rem 2rem
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 28.125em) {
    .header__content {
        flex-direction: column;
        gap: 2.4rem
    }
}

.header__brand-banner {
    display: flex;
    gap: 1.2rem;
    align-items: center
}

.header__brand-banner p {
    font-size: 1.4rem;
    font-style: italic
}

@media only screen and (max-width: 62em) {
    .header__brand-banner p {
        display: none
    }
}

.header__brand,
.header__brand:link,
.header__brand:visited {
    display: inline-flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-decoration: none;
    color: #000
}

.header__brand--main {
    display: block;
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1
}

.header__brand--sub {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px
}

.list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem
}

.list--with-icon .list__item {
    display: flex;
    gap: 1rem;
    align-items: center
}

.list--flexed {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.list--flexed .list__item {
    flex: 0 0 48%
}

@media only screen and (max-width: 28.125em) {
    .list--flexed .list__item {
        flex: 0 0 100%
    }
}

.list__item h3 {
    font-weight: 400;
    font-size: 1.6rem
}

.rating {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem
}

.rating__icon {
    font-size: 1.4rem;
    line-height: 1;
    color: #fcc419
}

@media only screen and (max-width: 62em) {
    .testimonial--hero {
        display: none
    }
}

.grid {
    display: grid;
    gap: 2.4rem
}

.grid--centered {
    align-items: center
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr)
}

@media only screen and (max-width: 62em) {
    .grid--2-cols {
        grid-template-columns: 1fr
    }
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 50em) {
    .grid--3-cols {
        grid-template-columns: 1fr
    }
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr)
}

@media only screen and (max-width: 62em) {
    .grid--4-cols {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width: 37.5em) {
    .grid--4-cols {
        grid-template-columns: 1fr
    }
}

.section {
    padding: 4rem 2rem
}

.section--hero {
    background: linear-gradient(rgba(55, 55, 55, 0.8), rgba(55, 55, 55, 0.8)), url(../../assets/heavily-blocked-downpipe-before-gutter-cleaning.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: none
}

@media only screen and (max-width: 62em) {
    .section--hero {
        display: block
    }
}

.section--light {
    background: #e3ecf3
}

.section--gray {
    background: #f3f3f3
}

.section--cta {
    background: linear-gradient(rgba(31, 44, 52, 0.9), rgba(31, 44, 52, 0.9)), url(../../assets/bg-asset.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;
}

.phone-number-hidden {
    visibility: hidden
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
    padding-top: 5rem;
    background-color: black;
}

.faq-container {
    max-width: 1200px;
    width: 100%;
}

.faq-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 24px 28px;
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    text-align: left;
    background: none;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #718096;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: black;
    font-size: 1.5rem;
    line-height: 1.6;
    padding-top: 15px;
}

@media only screen and (max-width: 1024px) {
    .faq-container {
        padding-inline: 20px;
    }
}