/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #pricing-1690 {
    padding: var(--sectionPadding);
  }

  #pricing-1690 .cs-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 80em;
    width: 100%;
    gap: clamp(3rem, 6vw, 4rem);
  }

  #pricing-1690 .cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  #pricing-1690 .cs-title {
    max-width: 20ch;
  }

  #pricing-1690 .cs-text {
    max-width: 32.625rem;
  }

  #pricing-1690 .cs-card-group {
    transform-style: preserve-3d;
    perspective: 700px;
    display: flex;
    flex-direction: column;
    flex-flow: wrap row;
    justify-content: center;
    margin: 0;
    width: 100%;
    padding: 0;
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  #pricing-1690 .cs-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    background-color: #f7f7f7;
    max-width: 31.25rem;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
    list-style: none;
    border-radius: 0.5rem;
  }

  #pricing-1690 .cs-item.cs-popular {
    background-color: var(--primary);
    position: relative;
    z-index: 10;
  }

  #pricing-1690 .cs-item.cs-popular .cs-package,
  #pricing-1690 .cs-item.cs-popular .cs-li,
  #pricing-1690 .cs-item.cs-popular .cs-duration {
    color: var(--bodyTextColorWhite);
  }

  #pricing-1690 .cs-item.cs-popular .cs-price {
    color: var(--bodyTextColorWhite);
  }

  #pricing-1690 .cs-package {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--headerFont);
    font-size: clamp(1.5625rem, 3vw, 2.25rem);
    line-height: 1.2em;
    font-weight: 700;
    color: #111926;
  }

  #pricing-1690 .cs-ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    gap: 0.75rem;
  }

  #pricing-1690 .cs-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    list-style: none;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--bodyTextColor);
    gap: 1rem;
  }

  #pricing-1690 .cs-li.cs-disabled {
    opacity: 0.8;
  }

  #pricing-1690 .cs-li.cs-disabled .cs-icon {
    width: 1rem;
    margin-right: 4px;
  }

  #pricing-1690 .cs-icon {
    display: block;
    height: auto;
    width: 1.5rem;
  }

  #pricing-1690 .cs-price {
    font-family: var(--headerFont);
    display: flex;
    align-items: baseline;
    margin: auto 0 1rem;
    padding-top: clamp(3rem, 6vw, 4rem);
    font-size: 3.0625rem;
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    gap: 0.5rem;
  }

  #pricing-1690 .cs-duration {
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    color: var(--bodyTextColor);
  }

  #pricing-1690 ul .cs-button-solid {
    width: fit-content;
    color: var(--primary);
    background: linear-gradient(135deg, #ffffff, #f2f2f2, #e6e6e6);
    background-size: 200% 200%;
    transition: background-position 0.4s ease;
    border: 1px solid var(--primary);
    box-shadow: none;
  }

  #pricing-1690 ul .cs-button-solid:before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
        rgba(0, 113, 227, 0.05) 0%,
        rgba(0, 113, 227, 0.1) 50%,
        rgba(0, 113, 227, 0.05) 100%);
    transform: skewX(-20deg);
    z-index: 2;
    transition: left 0.5s ease;
  }

  #pricing-1690 ul .cs-button-solid:hover {
    background-position: right center;
  }

  #pricing-1690 ul .cs-button-solid:hover:before {
    left: 125%;
  }

  #pricing-1690 .cs-or-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #pricing-1690 .cs-or-separator span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    font-family: var(--headerFont);
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    z-index: 1;
  }

  #pricing-1690 .cs-or-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 0;
  }

  body.dark-mode #pricing-1690 .cs-or-separator::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

@media only screen and (min-width: 48rem) {
  #pricing-1690 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }

  #pricing-1690 .cs-title {
    margin: 0;
  }

  #pricing-1690 .cs-option2 {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 64rem) {
  #pricing-1690 .cs-card-group {
    flex-wrap: nowrap;
  }

  #pricing-1690 .cs-or-separator {
    width: auto;
    padding: 0 1rem;
  }

  #pricing-1690 .cs-or-separator::before {
    display: none;
  }

  #pricing-1690 .cs-or-separator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
    z-index: 0;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode {
    background-color: var(--dark);
  }

  body.dark-mode #pricing-1690 {
    background-color: var(--dark);
  }

  body.dark-mode #pricing-1690 .cs-topper,
  body.dark-mode #pricing-1690 .cs-title,
  body.dark-mode #pricing-1690 .cs-text,
  body.dark-mode #pricing-1690 .cs-package,
  body.dark-mode #pricing-1690 .cs-price,
  body.dark-mode #pricing-1690 .cs-duration,
  body.dark-mode #pricing-1690 .cs-li {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #pricing-1690 .cs-text,
  body.dark-mode #pricing-1690 .cs-duration {
    opacity: 0.9;
  }

  body.dark-mode #pricing-1690 .cs-li.cs-disabled {
    opacity: 0.5;
  }

  body.dark-mode #pricing-1690 .cs-item {
    background-color: var(--medium);
  }

  body.dark-mode #pricing-1690 .cs-item.cs-popular {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 0 24px rgba(0, 113, 227, 0.4), inset 0 0 60px rgba(0, 113, 227, 0.3);
    animation: darkPulseGlow 8s infinite;
  }

  body.dark-mode #pricing-1690 ul .cs-button-solid.cs-secondary {
    width: fit-content;
    color: #ffffff;
    background: var(--medium);
    background-size: 200% 200%;
    transition: background-position 0.4s ease;
    border: 1px solid #fff;
  }

  body.dark-mode #pricing-1690 .cs-or-separator::before {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Base styles – Mobile First */
@media only screen and (min-width: 0em) {
  #faq {
    padding: var(--sectionPadding);
    background: #fafbfc;
  }

  #faq .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }

  #faq .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Tab Button Group */
  #faq .cs-button-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--primary);
    margin-bottom: 1.5rem;
  }

  #faq .cs-option {
    background: #fff;
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid var(--primary);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background 0.4s ease, color 0.4s ease;
    text-align: center;
    width: 100%;
  }

  #faq .cs-option:last-child {
    border-bottom: none;
  }

  #faq .cs-option:not(.cs-active):hover {
    background: #f3f8ff;
  }

  #faq .cs-option.cs-active {
    background: linear-gradient(135deg, var(--primary), #3399ff, #66ccff);
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.4);
  }

  /* FAQ Group Visibility */
  #faq .cs-faq-group {
    display: none;
    margin-bottom: 3rem;
  }

  #faq .cs-faq-group[data-category="one"] {
    display: block;
  }

  /* FAQ Item */
  #faq .cs-faq-item {
    border-bottom: 1px solid #dad9e3;
    transition: border-color 0.3s ease;
  }

  #faq .cs-faq-item.active {
    border-bottom: 1px solid var(--primary);
  }

  /* FAQ Question Button */
  /* FAQ Button Styling */
  #faq .cs-button {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: bold;
    line-height: 1.2em;
    padding: clamp(0.75rem, 1.3vw, 1rem) 0;
    width: 100%;
    background: none;
    border: none;
    color: var(--headerColor);
    text-align: left;
    position: relative;
    padding-right: 2rem;
    cursor: pointer;
  }

  /* Plus/Minus icon lines */
  #faq .cs-button::before,
  #faq .cs-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    width: 0.75rem;
    height: 2px;
    background: var(--headerColor);
    border-radius: 2px;
    transition: transform 0.6s ease, opacity 0.4s ease;
    transform-origin: center center;
  }

  /* Horizontal bar (minus line) */
  #faq .cs-button::before {
    transform: translateY(-50%) rotate(0deg);
  }

  /* Vertical bar (to complete the plus sign) */
  #faq .cs-button::after {
    transform: translateY(-50%) rotate(90deg);
    opacity: 1;
  }

  /* Active state: turns plus into minus with visible spin */
  #faq .cs-faq-item.active .cs-button::before {
    transform: translateY(-50%) rotate(180deg);
    /* 1.25 turns */
  }

  #faq .cs-faq-item.active .cs-button::after {
    transform: translateY(-50%) rotate(500deg);
    opacity: 0;
  }


  /* FAQ Answer */
  #faq .cs-item-p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    height: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
    color: var(--bodyTextColor);
    transition: opacity 0.3s ease, margin-bottom 0.3s ease;
  }

  #faq .cs-item-p p {
    padding-bottom: 1rem;
  }

  #faq .cs-faq-item.active .cs-item-p {
    height: auto;
    opacity: 1;
    margin-bottom: clamp(0.75rem, 1.3vw, 1rem);
  }

  #faq .cs-item-p ul {
    list-style: disc;
    padding-left: 1.5rem;
  }

  #faq .cs-item-p li {
    padding-bottom: 1rem;
  }

  /* Call to Action */
  #faq .cs-cta {
    text-align: center;
    padding: clamp(3rem, 4.9vw, 4rem) clamp(2.5rem, 4vw, 3.5rem);
    background: #fff;
    box-sizing: border-box;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
  }

  #faq .cs-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #3399ff, #66ccff);
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    z-index: 1;
  }

  #faq .cs-h3 {
    font-size: clamp(1.5625rem, 3vw, 1.9375rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--headerColor);
  }

  #faq .cs-cta-p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5em;
    margin-bottom: clamp(2rem, 3.9vw, 3rem);
    color: var(--bodyTextColor);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48em) {
  #faq .cs-container {
    max-width: 80rem;
  }

  #faq .cs-flex-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* 16px - 48px */
    gap: clamp(1rem, 3.5vw, 3rem);
  }

  #faq .cs-faq-group {
    margin: 0;
  }

  #faq .cs-button-group {
    flex-direction: row;
    display: inline-flex;
    width: auto;
    border-radius: 99rem;
  }

  #faq .cs-option {
    border-bottom: none;
    border-right: 1px solid var(--primary);
    width: auto;
  }

  #faq .cs-option:last-child {
    border-right: none;
  }

  #faq .cs-cta {
    width: 38.5%;
    max-width: 25.8125rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #faq {
    background-color: var(--darker);
  }

  body.dark-mode #faq .cs-topper {
    color: var(--primaryLight);
  }

  body.dark-mode #faq .cs-title,
  body.dark-mode #faq .cs-text,
  body.dark-mode #faq .cs-h3,
  body.dark-mode #faq .cs-item-p {
    color: var(--bodyTextColorWhite);
    opacity: 0.95;
  }

  body.dark-mode #faq .cs-option {
    background-color: var(--dark);
    color: var(--primaryLight);
    border-color: var(--primary);
  }

  body.dark-mode #faq .cs-option:not(.cs-active):hover {
    background-color: var(--accent);
  }

  body.dark-mode #faq .cs-option.cs-active {
    background: linear-gradient(135deg, var(--primary), #3399ff, #66ccff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.4);
  }

  body.dark-mode #faq .cs-button {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #faq .cs-button::before,
  body.dark-mode #faq .cs-button::after {
    background-color: var(--bodyTextColorWhite);
  }

  body.dark-mode #faq .cs-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  body.dark-mode #faq .cs-faq-item.active {
    border-color: var(--primary);
  }

  body.dark-mode #faq .cs-item-p {
    color: var(--bodyTextColorWhite);
    opacity: 0.85;
  }

  body.dark-mode #faq .cs-cta {
    background-color: var(--medium);
  }

  body.dark-mode #faq .cs-cta-p {
    color: var(--bodyTextColorWhite);
    opacity: 0.95;
  }
}


/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-51 {
    padding: var(--sectionPadding);
    position: relative;
  }

  #cta-51 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #cta-51 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #cta-51 .cs-topper,
  #cta-51 .cs-title,
  #cta-51 .cs-text {
    color: var(--bodyTextColorWhite);
  }

  #cta-51 .cs-text {
    margin-bottom: 1rem;
  }

  #cta-51 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #cta-51 .cs-picture {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #cta-51 .cs-picture:before {
    /* black color overlay */
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .8;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #cta-51 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}