/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1948 {
    padding: var(--sectionPadding);
    /* 160px - 200px */
    padding-top: clamp(15rem, 20vw, 12.5rem);
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1948 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-1948 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    /* 40px - 52px */
    margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-1948 .cs-flex {
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #hero-1948 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.438rem, 5vw, 3.813rem);
    color: var(--bodyTextColorWhite);
  }
  #hero-1948 .cs-text {
    margin-bottom: 1.25rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #hero-1948 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    /* 32px - 48px */
    padding: 0 clamp(2rem, 4vw, 3rem);
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    transition: background-color 0.3s;
  }
  #hero-1948 .cs-button-solid:hover {
    background-color: #000;
    color: #fff;
  }
  #hero-1948 .cs-picture {
    width: 100%;
    /* 280px - 510px */
    height: clamp(17.5rem, 58.6vw, 35rem);
    /* 16px - 20px */
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    display: block;
    position: relative;
  }
  #hero-1948 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
    position: absolute;
  }
  #hero-1948 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #hero-1948 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #484848;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #hero-1948 .cs-item:hover {
    border-color: var(--primary);
  }
  #hero-1948 .cs-item:hover .cs-h3 {
    color: var(--primary);
  }
  #hero-1948 .cs-item:hover .cs-icon {
    transform: rotateY(360deg);
  }
  #hero-1948 .cs-icon-picture {
    margin-bottom: 1.25rem;
    perspective: 700px;
    transform-style: preserve-3d;
  }
  #hero-1948 .cs-icon {
    width: 2.5rem;
    height: auto;
    display: block;
    transition: transform 0.5s;
    filter: brightness(0) saturate(100%) invert(27%) sepia(100%) saturate(2594%) hue-rotate(195deg) brightness(99%) contrast(101%);
  }
  #hero-1948 .cs-h3 {
    font-family: var(--headerFont);
    font-size: 1.25rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    margin-bottom: 0.75rem;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }
  #hero-1948 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: #F7F7F7;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1948 .cs-text {
    font-size: 1.25rem;
  }
  #hero-1948 .cs-item {
    text-align: left;
    margin: 0;
    align-items: flex-start;
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1948 .cs-content {
    display: flex;
    flex-direction: column;
  }
  #hero-1948 .cs-title {
    max-width: 46.875rem;
  }
  #hero-1948 .cs-item {
    grid-column: span 3;
  }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-1948 .cs-title {
    margin: 0;
  }
  #hero-1948 .cs-container {
    flex-direction: column;
  }
  #hero-1948 .cs-content {
    text-align: left;
    max-width: 80rem;
    gap: 1.25rem;
    flex-direction: row;
    align-items: flex-start;
  }
  #hero-1948 .cs-flex {
    width: 50%;
    max-width: 39.375rem;
  }
}
                                



/*-- -------------------------- -->
<---       Call To Action       -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta-2443 {
    padding: var(--sectionPadding);
    background-color: #010104;
    position: relative;
    z-index: 1;
  }
  #cta-2443 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }
  #cta-2443 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    gap: 2rem;
  }
  #cta-2443 .cs-title {
    font-size: clamp(2.8125rem, 4vw, 5.5rem);
    margin: 0;
    color: var(--bodyTextColorWhite);
    flex: none;
  }
  #cta-2443 .cs-text {
    margin-bottom: 1rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #cta-2443 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-2443 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-2443 .cs-button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #cta-2443 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-2443 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-2443 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.08;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-2443 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #cta-2443 .cs-flex {
    max-width: 23.25rem;
  }
}
                                




/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2414 {
    padding: var(--sectionPadding);
  }
  #services-2414 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 2rem;
  }
  #services-2414 .cs-title {
    max-width: 25ch;
  }
  #services-2414 .cs-text {
    margin-bottom: 1rem;
  }
  #services-2414 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #services-2414 .cs-button-solid {
    --gradientmix: color-mix(in lab, var(--primary), black 49%);
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    margin: 0;
    min-width: 9.375rem;
    padding: 0 1.75rem;
    background-color: var(--primary);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    border-radius: 6.25rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
  }
  #services-2414 .cs-button-solid:before {
    display: none;
  }
  #services-2414 .cs-button-solid:hover {
    background-color: var(--primaryLight);
  }
  #services-2414 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #services-2414 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 12px - 20px */
    padding: clamp(0.75rem, 1vw, 1.25rem);
    border-radius: 0.75rem;
    background-color: #fff;
    overflow: hidden;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-item:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-picture {
    width: 100%;
    height: 125vw;
    max-height: 21.875rem;
    /* 12px - 16px */
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    border-radius: 0.5rem;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #services-2414 .cs-h3 {
    font-family: var(--headerFont);
    /* 16px - 20px */
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
  }
  #services-2414 .cs-image-group {
    width: 100%;
    max-width: 44rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.625rem;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-map {
    width: 89%;
    height: 79vw;
    max-height: 25rem;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-map:before {
    content: '';
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.57) 54%, #ffffff 70%, #ffffff 88%);
    pointer-events: none;
    opacity: 1;
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 2;
  }
  #services-2414 .cs-map img,
  #services-2414 .cs-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-arrow {
    width: 2.25rem;
    height: auto;
    margin-right: 1.25rem;
    display: block;
    position: absolute;
    bottom: 4.6875rem;
    right: 50%;
    z-index: 3;
    transform: rotate(-137deg);
  }
  #services-2414 .cs-box {
    text-align: center;
    width: 40vw;
    max-width: 11.0625rem;
    margin-right: 15.625rem;
    /* 12px - 16px top & bottom */
    /* 12px - 24px left & right */
    padding: clamp(0.75rem, 3vw, 1rem) clamp(0.75rem, 3vw, 1.5rem);
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #services-2414 .cs-box:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 1rem;
    opacity: 0.1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-box:after {
    /* border color */
    content: '';
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 1rem;
    opacity: 0.2;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2414 .cs-box-text {
    /* 12px - 16px */
    font-size: clamp(0.75rem, 3vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
  #services-2414 .cs-item {
    grid-column: span 6;
  }
  #services-2414 .cs-box {
    margin-right: 21.875rem;
  }
  #services-2414 .cs-picture {
    height: auto;
    min-height: 13.25rem;
    max-height: 100%;
  }
  #services-2414 .cs-arrow {
    margin-right: 3.75rem;
    bottom: 6.25rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2414 .cs-container {
    align-items: flex-end;
  }
  #services-2414 .cs-content {
    text-align: left;
    width: 54vw;
    box-sizing: border-box;
    align-items: flex-start;
  }
  #services-2414 .cs-flex {
    padding-bottom: 0;
  }
  #services-2414 .cs-card-group {
    /* 200px - 325px */
    padding-left: clamp(12.5rem, 21vw, 20.3125rem);
  }
  #services-2414 .cs-item {
    grid-column: span 3;
  }
  #services-2414 .cs-picture {
    max-height: 12.5rem;
  }
  #services-2414 .cs-image-group {
    width: 41vw;
    max-width: 32.625rem;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1.25rem;
  }
  #services-2414 .cs-map {
    width: 100%;
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 8.25rem;
  }
  #services-2414 .cs-box {
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-2414 .cs-map {
    bottom: 4.375rem;
  }
  #services-2414 .cs-arrow {
    margin-right: 1.875rem;
    bottom: 4.375rem;
  }
}
                                


/*-- -------------------------- -->
<---        Why Choose Us        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #benefits-3521 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #benefits-3521 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  #benefits-3521 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #benefits-3521 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #benefits-3521 .cs-item {
    list-style: none;
    grid-column: span 12;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 1rem;
    padding: clamp(1rem, 2.4vw, 1.5rem);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
  }
  #benefits-3521 .cs-icon-picture { 
    width: 2.5rem; 
    height: 2.5rem; 
  }
  #benefits-3521 .cs-icon {
    width: 2rem;
    height: auto;
    filter: brightness(0) saturate(100%) invert(27%) sepia(100%) saturate(2594%) hue-rotate(195deg) brightness(99%) contrast(101%);
  }
  #benefits-3521 .cs-h3 {
    font-family: var(--headerFont);
    font-size: 1.125rem;
    line-height: 1.4em;
    margin: 0 0 0.25rem 0;
    color: var(--headerColor);
  }
  #benefits-3521 .cs-item-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #benefits-3521 .cs-item {
    grid-column: span 6;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #benefits-3521 .cs-item {
    grid-column: span 4;
  }
}


/*-- -------------------------- -->
<---     Service Lists Block     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #service-lists-3522 {
    padding: var(--sectionPadding);
    background: #f7f9fc;
    position: relative;
    z-index: 1;
  }
  #service-lists-3522 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #service-lists-3522 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 44rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #service-lists-3522 .cs-columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #service-lists-3522 .cs-col {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #eaeaea;
    padding: clamp(1rem, 2.2vw, 1.5rem);
    grid-column: span 12;
  }
  #service-lists-3522 .cs-col-title {
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  #service-lists-3522 .cs-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
  }
  #service-lists-3522 .cs-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--bodyTextColor);
  }
  #service-lists-3522 .cs-list li:before {
    content: "";
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0.2rem;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M6.173 13.727L.8 8.354l1.886-1.886 3.487 3.487 7.141-7.141 1.886 1.886z"/></svg>') no-repeat center / contain;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M6.173 13.727L.8 8.354l1.886-1.886 3.487 3.487 7.141-7.141 1.886 1.886z"/></svg>') no-repeat center / contain;
  }
  #service-lists-3522 .cs-footnote {
    text-align: center;
    margin: 0;
    color: var(--headerColor);
  }
  #service-lists-3522 .cs-link-inline {
    color: var(--primary);
    text-decoration: none;
  }
  #service-lists-3522 .cs-link-inline:hover {
    text-decoration: underline;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #service-lists-3522 .cs-col { grid-column: span 6; }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #service-lists-3522 .cs-col { grid-column: span 4; }
}
 
/*-- -------------------------- -->
<---        Estimate Form        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #estimate-3523 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #estimate-3523 .cs-container {
    width: 100%;
    max-width: 56rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #estimate-3523 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #estimate-3523 .cs-form {
    width: 100%;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 1rem;
    overflow: hidden;
  }
  #estimate-3523 .cs-steps {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  #estimate-3523 .cs-track {
    width: 300%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transition: transform 0.45s ease;
  }
  #estimate-3523 .cs-step {
    margin: 0;
    padding: clamp(1rem, 4vw, 2rem);
    display: block;
    box-sizing: border-box;
    border: none; /* prevent default fieldset border overlapping parent border radius */
    background: transparent;
  }
  #estimate-3523 .cs-step legend { display: none; }
  #estimate-3523 .cs-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  #estimate-3523 .cs-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
  #estimate-3523 .cs-field:last-child { margin-bottom: 0; }
  #estimate-3523 .cs-label { font-weight: 600; color: var(--headerColor); }
  #estimate-3523 .cs-required { color: #e63946; margin-left: 0.25rem; }
  #estimate-3523 .cs-input {
    width: 100%;
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.2em;
    padding: 0.875rem 1rem;
    color: var(--headerColor);
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 0.5rem;
  }
  #estimate-3523 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    margin: 0;
    min-width: 9.375rem;
    padding: 0 1.75rem;
    background-color: var(--primary);
    background-image: none;
    border-radius: 0.25rem;
    border: none;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
  }
  #estimate-3523 .cs-button-solid:hover { background-color: var(--primaryLight); }
  #estimate-3523 .cs-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent); }
  #estimate-3523 .cs-actions { display: flex; gap: 0.75rem; margin-top: 1rem; }
  #estimate-3523 .cs-actions .cs-button-solid { margin: 0; }
  #estimate-3523 .cs-progress { display: flex; justify-content: center; gap: 0.5rem; padding: 1rem; }
  #estimate-3523 .cs-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #e0e0e0; display: inline-block; transition: background-color .3s, transform .3s;
  }
  #estimate-3523 .cs-dot.cs-active { background: var(--primary); transform: scale(1.15); }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #estimate-3523 .cs-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}