/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #services-page {
    padding: var(--sectionPadding);
  }
  #services-page .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 4.5vw, 4rem);
  }
  #services-page .cs-content {
    text-align: center;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
  }
  #services-page .cs-text {
    margin: 1rem auto 0;
  }
  #services-page .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
  #services-page .cs-item {
    list-style: none;
    width: 100%;
    padding: clamp(1.5rem, 3.15vw, 2.5rem);
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    grid-column: span 12;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #services-page .cs-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  #services-page .cs-item .cs-icon {
    width: 3rem;
    height: 3rem;
  }
  #services-page .cs-item .cs-h3 {
    font-size: var(--headerFiveFontSize);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #services-page .cs-item .cs-item-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-page .cs-item .cs-link {
    font-size: var(--bodyFontSize);
    font-weight: 700;
    color: var(--headerColor);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: color 0.3s ease;
  }
  #services-page .cs-item .cs-link:hover {
    color: var(--primaryShade);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-page .cs-item {
    grid-column: span 6;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-page .cs-item {
    grid-column: span 4;
  }
}
/*-- -------------------------- -->
<---       Our Process          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #process {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #process .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 4.5vw, 4rem);
  }
  #process .cs-content {
    text-align: center;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
  }
  #process .cs-text {
    margin: 1rem auto 0;
  }
  #process .cs-steps {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: step-counter;
  }
  #process .cs-step {
    list-style: none;
    padding: 2rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    counter-increment: step-counter;
    position: relative;
    padding-left: 5rem;
  }
  #process .cs-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primaryShade);
    line-height: 1;
  }
  #process .cs-step .cs-h3 {
    font-size: var(--headerFiveFontSize);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #process .cs-step .cs-step-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #process .cs-steps {
    grid-template-columns: 1fr 1fr;
  }
}
/*-- -------------------------- -->
<---         Pricing            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #pricing {
    padding: var(--sectionPadding);
  }
  #pricing .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 4.5vw, 4rem);
  }
  #pricing .cs-content {
    text-align: center;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
  }
  #pricing .cs-text {
    margin: 1rem auto 0;
  }
  #pricing .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #pricing .cs-price-card {
    list-style: none;
    width: 100%;
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #pricing .cs-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  #pricing .cs-price-card.featured {
    border: 2px solid var(--primaryShade);
    position: relative;
  }
  #pricing .cs-price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primaryShade);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
  }
  #pricing .cs-price-card .cs-h3 {
    font-size: var(--headerFourFontSize);
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #pricing .cs-price-card .cs-price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--headerColor);
    margin: 0;
  }
  #pricing .cs-price-card .cs-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bodyTextColor);
  }
  #pricing .cs-price-card .cs-price-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #pricing .cs-price-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    width: 100%;
    text-align: left;
  }
  #pricing .cs-price-card ul li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
  }
  #pricing .cs-price-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
  }
  #pricing .cs-price-card .cs-price-alt {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bodyTextColor);
    margin: -0.5rem 0 0 0;
    opacity: 0.8;
  }
  #pricing .cs-pricing-note {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
  }
  #guarantee {
    padding: clamp(2rem, 4vw, 3rem) 1rem;
    text-align: center;
  }
  #guarantee .cs-container {
    width: 100%;
    max-width: 50rem;
    margin: auto;
  }
  #guarantee .cs-content {
    text-align: center;
  }
  #guarantee .cs-title {
    color: var(--headerColor);
  }
  #guarantee .cs-text {
    margin: 1rem auto 0;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #pricing .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*-- -------------------------- -->
<---           FAQ              -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #faq {
    padding: var(--sectionPadding);
  }
  #faq .cs-container {
    width: 100%;
    max-width: 50rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
  }
  #faq .cs-content {
    text-align: center;
    width: 100%;
  }
  #faq .cs-text {
    margin: 1rem auto 0;
  }
  #faq .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #faq .cs-faq-item {
    list-style: none;
    border-bottom: 1px solid #e0e0e0;
  }
  #faq .cs-faq-item.active .cs-indicator {
    transform: rotate(45deg);
  }
  #faq .cs-faq-item.active .cs-item-content {
    max-height: 25rem;
    padding-bottom: 1.25rem;
  }
  #faq .cs-button {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
  }
  #faq .cs-button .cs-h3 {
    font-size: var(--headerFiveFontSize);
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    transition: color 0.3s ease;
  }
  #faq .cs-button:hover .cs-h3 {
    color: var(--primaryShade);
  }
  #faq .cs-button .cs-indicator {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primaryShade);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }
  #faq .cs-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }
  #faq .cs-item-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #cta {
    position: relative;
    padding: 3.125em 0;
  }
  #cta:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: var(--primary);
    opacity: 0.7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta .container {
    text-align: center;
  }
  #cta .title {
    font-weight: 900;
    font-size: min(9vw, 3em);
    line-height: 1.20833333;
    position: relative;
    margin-bottom: 0.75em;
    text-align: center;
  }
  #cta p {
    text-align: center;
    opacity: 1;
    margin: auto;
    margin-bottom: 2em;
    width: 96%;
    max-width: 33.25em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #cta {
    padding: 10.5em 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25em;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: url("../assets/images/cta-squares.svg");
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;
  }
  #cta .container {
    width: 90.0625%;
    margin: auto;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #services-page .cs-item,
  body.dark-mode #process .cs-step,
  body.dark-mode #pricing .cs-price-card,
  body.dark-mode #faq .cs-faq-item {
    background: var(--medium);
  }
  body.dark-mode #process {
    background-color: var(--dark);
  }
  body.dark-mode #cta:after {
    display: none;
  }
  body.dark-mode #pricing .cs-price-card.featured {
    border-color: var(--primaryShade);
  }
}
