@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
html, body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Arial, sans-serif;
}


html, body {
  margin: 0;
  padding: 0;
}
body {
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.is-leaving {
  opacity: 0;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
  body.scroll #cs-navigation:before {
    border-radius: 0;
  }
  body.scroll #cs-navigation .cs-ul-wrapper {
    top: 100%;
  }
  #cs-navigation {
    width: 94%;
    max-width: 80rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem);
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.2s, border-radius 0.3s ease-in-out;
  }
  #cs-navigation.cs-active:before {
    transform: translateX(-50%) scale(1.03);
  }
  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #1a1a1a;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: transform 0.6s;
  }
  #cs-navigation .cs-nav {
    /* sends it to the right in the 3rd position */
    order: 3;
  }
  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 10;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    display: none;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #fafbfc;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    position: absolute;
    top: 85%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-70/16rem);
    transition: transform 0.6s, opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600; 
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }
  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
    opacity: 0;
    border-bottom: 5px solid var(--primary);
    border-radius: 0 0 1.5rem 1.5rem;
    visibility: hidden;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    z-index: -100;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    font-size: 1rem;
    text-decoration: none;
    list-style: none;
    width: 100%;
    height: auto;
    opacity: 0;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    top: 0;
  }
  #cs-navigation {
    width: 94%;
    max-width: 90rem;
    height: 6rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem) 0;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 2rem;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    background-color: var(--primary);
  }
  #cs-navigation .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(10000%);
  }
  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    /* absolutely positioned to be dead center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 1rem;
    font-weight: 600; 
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}
.cs-language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem; /* keeps spacing from the phone */
  font-size: 0.875rem;
  line-height: 1;
}

.cs-lang-link {
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
}

.cs-lang-link:hover {
  opacity: 1;
}

.cs-active-lang {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cs-lang-sep {
  opacity: 0.5;
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cs-navigation .cs-social {
    display: flex;
  }
}

#pricing {
  position: relative;
  padding-top: 0;
}

/* Blue curved background */
.pricing-bg {
  background: linear-gradient(300deg, #0f172a 0%, #1e293b 100%);
  text-align: center;

  /* offset for fixed nav + spacing */
  padding-top: calc(clamp(6rem, 18vw, 15rem) + 4.5rem);
  padding-inline: 1rem;
  padding-bottom: clamp(4rem, 10vw, 8rem);

  border-bottom-left-radius: 50% clamp(60px, 12vw, 120px);
  border-bottom-right-radius: 50% clamp(60px, 12vw, 120px);
}



/* Title styling */
.pricing-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
}

/* Pull pricing cards up into the blue section */
#pricing .container {
  position: relative;
  margin-top: -4rem;
  z-index: 2;
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing-1790 {
    padding: var(--sectionPadding);
    padding-bottom: 10vw;
    background-color: #F7F7F7;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #pricing-1790 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #pricing-1790 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 100px;
  }
  #pricing-1790 .cs-flex {
    display: flex;
    flex-direction: column;
  }

  #pricing-1790 .cs-topper {
    color: #46b8ff;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  }

  #pricing-1790 .cs-title {
    margin: 0;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;       
    letter-spacing: 0.01em;        
    line-height: 1.15;
    width: 70%;
  }
  #pricing-1790 .cs-wrapper {
    width: 100%;
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #pricing-1790 .cs-ul {
    width: 100%;
    margin: 1.5rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #pricing-1790 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    max-width: 21.8125rem;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #pricing-1790 .cs-icon {
    width: 1.125rem;
    height: auto;
    display: block;
  }
  #pricing-1790 .cs-card-group {
    width: 100%;
    max-width: 72rem; /* was 57rem */
    margin: 3rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #pricing-1790 .cs-item {
    width: 100%;
    max-width: 26rem;        /* wider */
    list-style: none;

    background: #f6f6f6;
    border-radius: 1.75rem;
    padding: 2.25rem 2.25rem 2rem; /* tighter vertical padding */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  #pricing-1790 .cs-item.cs-popular {
    background-color: #1A1A1A;
    /* 48px - 64px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 1.5vw, 2rem);
  }
  #pricing-1790 .cs-item.cs-popular .cs-package,
  #pricing-1790 .cs-item.cs-popular .cs-frequency,
  #pricing-1790 .cs-item.cs-popular .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #pricing-1790 .cs-item.cs-popular .cs-price {
    color: var(--bodyTextColorWhite);
  }
  #pricing-1790 .cs-item.cs-popular .cs-button-solid {
    transition: color 0.3s;
  }
  #pricing-1790 .cs-item.cs-popular .cs-button-solid:hover {
    color: var(--primary);
  }
  #pricing-1790 .cs-item.cs-popular .cs-button-solid:before {
    background-color: #fff;
  }
  #pricing-1790 .cs-package {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.4vw, 1rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-transform: uppercase;
    margin: 0 0 0.25rem 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #pricing-1790 .cs-flex-wrapper {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }
  #pricing-1790 .cs-flex-wrapper:after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 232, 232, 0.2) 0%, #e8e8e8 53.78%, rgba(232, 232, 232, 0.2) 100%);
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
  }
  #pricing-1790 .cs-price {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
  }
  #pricing-1790 .cs-frequency {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #pricing-1790 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 auto;
    color: var(--bodyTextColor);
  }
  #pricing-1790 .cs-button-solid {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: clamp(3.2em, 6vw, 3.8em); /* taller */
    text-align: center;
    text-decoration: none;
    min-width: 14rem;        /* wider */
    margin: 2rem 0 0 0;
    box-sizing: border-box;
    padding: 0 2.5rem;      /* more left/right space */
    color: #ffffff;
    background-color: #46b8ff;
    border-radius: 999px;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  /* Hover overlay */
  #pricing-1790 .cs-button-solid::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(180deg, #062a44 0%, #041f34 100%);
    border-radius: 999px;
    z-index: -1;
    transition: width 0.45s cubic-bezier(.4, 0, .2, 1);
  }
  
  /* On hover */
  #pricing-1790 .cs-button-solid:hover::before {
    width: 100%;
  }  
  
  #pricing-1790 .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    bottom: -1rem;
    left: 0rem;
    z-index: -1;
  }
  #pricing-1790 .cs-dark {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #pricing-1790 .cs-container {
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #pricing-1790 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #pricing-1790 .cs-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  #pricing-1790 .cs-card-group {
    flex-direction: row;
    align-items: stretch;
  }
  #pricing-1790 .cs-item {
    height: auto;
    margin: 1.5rem 0;
  }
  #pricing-1790 .cs-item.cs-popular {
    margin: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #pricing-1790 .cs-ul {
    width: 30%;
    display: flex;
  }
  #pricing-1790 .cs-wrapper {
    flex-direction: row;
    gap: 1.25rem;
  }
  #pricing-1790 .cs-card-group {
    margin: 0;
  }
  #pricing-1790 .cs-item {
    min-height: 25rem;
  }
}

@media only screen and (min-width: 48rem) {
  #pricing-1790 .cs-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* centers the card group */
  }

  #pricing-1790 .cs-card-group {
    width: 100%;
    justify-content: center; /* centers items within the row */
    gap: 1.5rem;
  }

  #pricing-1790 .cs-item {
    width: auto;                /* stop being 100% in row layout */
    flex: 0 1 18rem;            /* card width */
    margin: 0;                  /* remove the 1.5rem 0 margin */
  }
}

@media only screen and (min-width: 64rem) {
  #pricing-1790 .cs-item {
    flex-basis: 20rem;          /* slightly wider cards on desktop */
  }
}
/* Card group layout (centered) */
#pricing-1790 .cs-card-group {
  width: 100%;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Row layout on larger screens */
@media (min-width: 48rem) {
  #pricing-1790 .cs-card-group {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
  }
}

/* The card */
#pricing-1790 .cs-item {
  width: 100%;
  max-width: 22rem;
  list-style: none;

  background: #f6f6f6;
  border-radius: 2rem;
  padding: 3.25rem 2.5rem 2.5rem;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
}

/* Big title */
#pricing-1790 .cs-plan-title {
  margin: 0 0 1.5rem 0;
  font-size: clamp(1.125rem, 2vw, 1.65rem);

  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f172a;
}

/* Features list */
#pricing-1790 .cs-features {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Each feature row: text left, icon right */
#pricing-1790 .cs-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;

  font-size: 1rem;
  line-height: 1.35;
  color: #2b2f3a;
}

/* Icon styles */
#pricing-1790 .cs-status {
  flex: none;
  width: 2rem;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 800;
}

/* Blue check */
#pricing-1790 .cs-status--yes {
  color: #3b82f6;
}

/* Grey "no" */
#pricing-1790 .cs-status--no {
  color: #8b8b8b;
}

/* Disabled features */
#pricing-1790 .cs-feature--off {
  color: #9aa0aa;
}

/* Price row near bottom */
#pricing-1790 .cs-price-row {
  margin-top: auto;              /* pushes price + button to bottom */
  padding-top: 2.75rem;

  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

#pricing-1790 .cs-price-big {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  color: #0b0b0b;
}

#pricing-1790 .cs-price-sub {
  font-size: 1.25rem;
  color: #404559;
  font-weight: 600;
}

#pricing-1790 .cs-cta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  min-width: 70px;        /* 👈 controls width instead of padding */
  border-radius: 999px;
  padding: 0 0.75rem;     /* only small inner spacing now */
  background: #0b2340;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#pricing-1790 .cs-cta:hover {
  filter: brightness(1.05);
}
/* ===== Pricing cards: wide + shorter ===== */

/* Card group */
#pricing-1790 .cs-card-group{
  width: 100%;
  max-width: 80rem;          /* make the whole group wider */
  margin: 3rem auto 0;       /* center it */
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Row layout on tablet+ */
@media (min-width: 48rem){
  #pricing-1790 .cs-card-group{
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
  }
}

/* Cards */
#pricing-1790 .cs-item{
  width: 100%;
  max-width: 28rem;          /* wider cards */
  padding: 2.25rem 2.25rem 2rem; /* less vertical padding = less height */
  margin: 0;                 /* remove vertical margins that add height */
  border-radius: 2rem;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
}

/* Make 3 cards fit nicely on desktop */
@media (min-width: 64rem){
  #pricing-1790 .cs-item{
    flex: 1 1 0;             /* let them grow evenly */
    max-width: 26rem;        /* keep a nice max */
  }
}

/* If popular card is too tall, align its padding too */
#pricing-1790 .cs-item.cs-popular{
  padding: 2.5rem 2.25rem 2.25rem; /* reduce the clamp padding */
}
/* ============================= */
/* POP + STAND OUT PRICING CARDS */
/* ============================= */

#pricing-1790 .cs-card-group {
  perspective: 1000px;
}

/* Base card look: more depth + separation */
#pricing-1790 .cs-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 1px 0 rgba(255,255,255,0.6) inset;
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s ease,
    filter 0.35s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

/* POP-IN initial state */
#pricing-1790 .cs-item {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  filter: blur(6px);
}

/* When visible: come out */
#pricing-1790 .cs-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hover/tap: more lift + stronger shadow */
#pricing-1790 .cs-item:hover,
#pricing-1790 .cs-item.is-active {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(59,130,246,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.16),
    0 8px 25px rgba(11,35,64,0.10);
}

#pricing-1790 .cs-item:hover::before,
#pricing-1790 .cs-item.is-active::before {
  opacity: 1;
}

/* CTA also “pops” a bit */
#pricing-1790 .cs-cta {
  transition: transform 0.25s ease, filter 0.25s ease;
}

#pricing-1790 .cs-item:hover .cs-cta,
#pricing-1790 .cs-item.is-active .cs-cta {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

/* Optional: make the middle plan stand out by default */
#pricing-1790 .cs-item.is-featured {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(11,35,64,0.25);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.18),
    0 10px 30px rgba(11,35,64,0.12);
}

/* CTA Section */
#cta-697 {
  padding: 60px 20px;
  background: linear-gradient(300deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Container */
#cta-697 .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Content */
#cta-697 .cs-content {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Title */
#cta-697 .cs-title {
  color: #ffffff;
  font-size: 2rem;
}

/* Button */
#cta-697 .cs-button-solid {
  font-size: 1rem;
  line-height: 56px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  color: #151c2e;
  min-width: 150px;
  padding: 0 24px;
  background-color: #ffffff; /* secondary color */
  border-radius: 4px;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hover animation */
#cta-697 .cs-button-solid::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  color: #46b8ff;
  background-color:#46b8ff ;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 4px;
  transition: width 0.3s ease;
}

#cta-697 .cs-button-solid:hover::before {
  width: 100%;
}

/* Background image */
#cta-697 .cs-background {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}

/* Desktop */
@media (min-width: 1024px) {
  #cta-697 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
}
/* ============================================
   Footer (White Background - Normal CSS)
   ============================================ */

/* Mobile */
#cs-footer-308 {
  padding: 60px 20px;              /* was var(--sectionPadding) */
  background-color: #ffffff;       /* WHITE background */
}

/* Container */
#cs-footer-308 .cs-container {
  width: 100%;
  max-width: 700px;                /* was 43.75rem */
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;                       /* 2.5rem */
}

/* Logo group */
#cs-footer-308 .cs-logo-group {
  width: 100%;
  position: relative;
}

#cs-footer-308 .cs-logo {
  width: 178px;                    /* matches your img width */
  height: auto;
  display: block;
  margin-bottom: 24px;
}

#cs-footer-308 .cs-logo-img {
  width: 100%;
  height: auto;
}

/* If you ever use a dark logo variant */
#cs-footer-308 .cs-logo-img.dark {
  display: none;
}

/* Text */
#cs-footer-308 .cs-text {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
  margin: 0;
  width: 78%;
  max-width: 420px;
  color: #1a1a1a;                  /* dark text for white bg */
}

/* Nav columns */
#cs-footer-308 .cs-nav {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;                       /* 0.75rem */
}

#cs-footer-308 .cs-nav-li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Column header */
#cs-footer-308 .cs-header {
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  display: block;
}

/* Links */
#cs-footer-308 .cs-nav-link {
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.5;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

/* underline animation */
#cs-footer-308 .cs-nav-link::before {
  content: "";
  width: 0%;
  height: 2px;
  background: currentColor;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

#cs-footer-308 .cs-nav-link:hover {
  color: #1a73e8;                  /* "primary" hover color */
}

#cs-footer-308 .cs-nav-link:hover::before {
  width: 100%;
}

/* Contact icons */
#cs-footer-308 .cs-icon {
  width: 24px;
  height: auto;
  margin-right: 12px;
  /* make black icons visible on white background */
  filter: invert(1);
  opacity: 0.75;
}

/* Bottom bar */
#cs-footer-308 .cs-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e6e6e6;   /* light divider for white bg */
  display: flex;
  justify-content: center;
  align-items: center;
}

#cs-footer-308 .cs-copyright,
#cs-footer-308 .cs-copyright-link {
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a1a;
}

#cs-footer-308 .cs-copyright-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

#cs-footer-308 .cs-copyright-link:hover {
  color: #1a73e8;
}

/* Tablet */
@media (min-width: 768px) {
  #cs-footer-308 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    row-gap: 40px;
  }

  #cs-footer-308 .cs-nav {
    width: auto;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  #cs-footer-308 .cs-container {
    max-width: 1280px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    column-gap: 84px;              /* 5.25rem */
  }

  #cs-footer-308 .cs-logo-group {
    width: 30%;
    max-width: 387px;              /* 24.1875rem */
    margin-right: auto;
  }

  #cs-footer-308 .cs-text {
    width: 100%;
  }
}
