/* ===================================
   CSS Variables / Design Tokens
   =================================== */
:root {
    /* Colors */
    --color-primary: #7b2ff7;
    --color-secondary: #841484;
    --color-tertiary: #1f1b5d;
    --color-accent: #56b2f7;
    --color-pink: #f175a5;
    --color-dark-bg: #1d1637;
    --color-card-bg: #1f1b5e;
    --color-white: #ffffff;
    --color-gold: #FFD700;
    --color-brand: #0b6bbf;
    
    /* Typography */
    --font-family: 'Montserrat', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Font Sizes - Mobile */
    --font-size-hero: 36px;
    --font-size-h1: 24px;
    --font-size-h2: 18px;
    --font-size-body: 14px;
    --font-size-button: 14px;
    --font-size-small: 16px;
    
    /* Spacing */
    --spacing-xs: 12px;
    --spacing-sm: 24px;
    --spacing-md: 48px;
    --spacing-lg: 100px;
    
    /* Layout */
    --container-width-mobile: 350px;
    --container-width-desktop: 1514px;
    --border-radius: 10px;
    --border-radius-button: 99999px;
}

/* Desktop Variables */
@media (min-width: 1200px) {
    :root {
        --font-size-hero: 56.319px;
        --font-size-h1: 36px;
        --font-size-h2: 24px;
        --font-size-body: 24px;
        --font-size-button: 24px;
    }
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--BG, linear-gradient(173deg, #F3ECFF 0.05%, #FFFAD6 99.95%));
    min-height: 100vh;
    color: #252424;
    overflow-x: hidden;
    padding-bottom: 50px;
}

@media (min-width: 1200px) {
  body {
  padding-bottom: 0;
  }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================
   Header
   =================================== */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e6ebf4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  @media (min-width: 1920px) {
      .header__container{
        padding: 0 308px;
      }
    }

    @media (min-width: 1200px) and (max-width: 1919px) {
      .header__container{
        padding: 0 160px;
      }
    }

  @media (min-width: 768px) and (max-width: 1199px) {
    .header__container{
      padding: 0 50px;
    }
  }
  
    .header {
      background: #ffffff;
      border-bottom: 1px solid #e6ebf4;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header__container {
      height: 119px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    
    @media (min-width: 1200px) {
      .header__container {
        justify-content: center;
      }
    }
    @media (min-width: 768px) and (max-width: 1199px) {
      .header__container {
        height: 80px;
        padding: 0 50px;
      }
    }
    @media (max-width: 767px) {
      .header__container {
        height: 50px;
        padding: 15px;
      }
    }
  
      @media (min-width: 768px) and (max-width: 1199px) {
        .header__logo {
          width: 160px;
        }
      }
      @media (min-width: 1200px) and (max-width: 1700px) {
        .header__logo {
          width: 180px;
          margin-right: 20px;
        }
      }
      @media (max-width: 1199px) {
        .header__logo {
          margin-left: 50px;
        }
      }
    @media (max-width: 767px) {
      .header__logo {
        width: 120px;
        margin: 0 auto;
      }
    }
    .header__nav-desktop {
      display: none;
      position: relative;
    }
    @media (min-width: 1200px) {
      .header__nav-desktop {
        display: flex;
        flex: 1;
        justify-content: flex-end;
        margin-left: auto;
      }
    }
    .notification-icon {
      width: 20px;
      height: 26px;
      animation: wiggle 2s linear infinite;
      flex-shrink: 0;
    }
    @media (min-width: 1200px) {
      .notification-icon {
        margin-left: 20px;
      }
    }
    
    .header__nav-desktop-list {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 30px;
      align-items: center;
    }
    .header__nav-desktop-item {
      margin: 0;
    }
    .header__nav-desktop-link {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #252424;
      transition: all 0.3s ease;
      padding: 8px 0;
      display: block;
      white-space: nowrap;
    }
    .header__nav-desktop-link:hover {
      color: var(--primary-color);
    }
    .header__burger {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      width: 24px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
      position: relative;
    }
    @media (min-width: 1200px) {
      .header__burger {
        display: none;
      }
    }
    
    .header__burger-line {
      width: 100%;
      height: 2px;
      background-color: #252424;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .header__burger.is-active .header__burger-line:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }
    .header__burger.is-active .header__burger-line:nth-child(2) {
      opacity: 0;
    }
    .header__burger.is-active .header__burger-line:nth-child(3) {
      transform: rotate(-45deg) translate(2px, -3px);
    }
    
    .header__nav {
      display: block;
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      background: #ffffff;
      border-bottom: 1px solid #e6ebf4;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      max-height: calc(100vh - 50px);
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
      .header__nav {
        top: 80px;
        max-height: calc(100vh - 80px);
      }
    }
    @media (min-width: 1200px) {
      .header__nav {
        display: none;
      }
    }
    .header__nav.is-open {
      transform: translateX(0);
    }
    @media (min-width: 1200px) {
      .header__nav.is-open {
        transform: translateX(0);
      }
    }
    .header__nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .header__nav-item {
      border-bottom: 1px solid #e6ebf4;
    }
    .header__nav-item:last-child {
      border-bottom: none;
    }
    .header__nav-label {
      display: block;
      padding: 20px;
      font-size: 14px;
      font-weight: 700;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .header__nav-link {
      display: block;
      padding: 20px;
      font-size: 16px;
      font-weight: 500;
      color: #252424;
      transition: all 0.3s ease;
    }
    .header__nav-link:hover {
      background-color: #e6eafd;
      color: var(--primary-color);
      padding-left: 25px;
    }
    
    @media (max-width: 767px) {
      body.menu-open {
        overflow: hidden;
      }
    }
  
  .logo {
      height: auto;
      width: 100%;
      max-width: 300px;
  }

/* ===================================
   Main & Container
   =================================== */
.main {
    padding: 0;
}

.box-container {
  height: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-width-mobile);
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .container {
      width: 100%;
      max-width: 900px;
      padding: 0 50px;
    }
}

@media (min-width: 1920px) {
  .container {
    padding: 0 308px;
    max-width: 1920px;
  }

}

@media (min-width: 1200px) and (max-width: 1919px) {
    .container {
      width: 100%;
      max-width: 1920px;
      padding: 0 160px;
  }

}

/* ===================================
   Hero Section
   =================================== */
.hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.hero__image-wrapper {
    width: 100%;
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 234px;
}

.hero__video-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 2px solid var(--color-white);
  border-radius: var(--border-radius);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    width: 100%;
}

.title-section__logo {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.title-section__logo.mobile {
  display: block;
  margin: 0 auto;
}

.title-section__logo.desktop {
  display: none;
}

.title-section__logo-img {
    width: 200px;
    height: auto;
}

@media (min-width: 1200px) {
    .hero {
        flex-direction: row-reverse;
        gap: 20px;
    }
    
    .hero__image-wrapper {
        width: 752px;
        height: 536px;
        flex-shrink: 0;
    }

    .title-section__logo.mobile {
      display: none;
    }
    
    .title-section__logo.desktop {
      display: block;
    }
    
    .title-section__logo {
      display: flex;
      justify-content: flex-start;
      margin: 90px 0 50px;
    }
  
    .title-section__logo-img {
        width: 406px;
    }

    .hero__video-wrapper{
      margin-top: 0;
    }

    .hero__video-wrapper,
    .hero__content {
      width: 50%;
    }
}

/* ===================================
   Title Section
   =================================== */
.title-section {
    text-align: center;
}

.title-section__heading {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    line-height: 1;
    white-space: nowrap;
    color: var(--color-primary);
}

.title-section__subheading {
    font-size: .8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-brand);
    line-height: 1;
    white-space: nowrap;
}

@media (min-width: 1400px) {
  .title-section {
    text-align: left;
}

.title-section__heading {
  font-size: var(--font-size-h1);
}

.title-section__subheading {
  font-size: 1.3rem;
}
}

@media (min-width: 1200px) and (max-width: 1399px) {

.title-section {
  text-align: left;
}

  .title-section__subheading {
    font-size: 1rem;
  }
}

/* ===================================
   Features Section
   =================================== */
.features {
    margin: var(--spacing-sm) 0 50px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.features__container {
    margin: 0 auto;
    gap: var(--spacing-sm);
    display: flex;
    flex-direction: column;
}

.features__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.features__item svg {
  width: 25px;
  max-width: 25px;
  max-height: 20px;
  height: auto;
}

.features__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.features__text {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .features {
        gap: 41.623px;
        margin: var(--spacing-md) 0 0;
    }

    .features__container {
     margin: 0;
    }

    .features__item svg {
      width: 100%;
      height: auto;
      max-width: 40px;
      max-height: 35px;
    }
    
    .features__item {
        gap: 39.024px;
        justify-content: flex-start;
    }
    
    .features__icon {
        width: 34.686px;
        height: 34.686px;
    }

    .features__text {
      font-size: 1.2rem;
    }
}

/* ===================================
   CTA Button
   =================================== */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px 40px;
    border-radius: var(--border-radius-button);
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cta-button--primary {
    background: var(--color-brand);
}

.cta-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.98);
}

#ctaButton1 {
   display: none;
}

.mobile-sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-primary);
}

.mobile-sticky-btn {
  display: block;
  width: 100%;
  background: var(--color-brand);
  color: var(--color-white);
  border: none;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1200px) {
    .cta-button {
        width: 404px;
    }
    #ctaButton1 {
      display: flex;
      margin-top: var(--spacing-sm);
   }
   .mobile-sticky-cta {
    display: none;
  }
}

/* ===================================
   Top Sites Link
   =================================== */
.top-sites-link {
    display: flex;
    align-items: center;
    gap: 27.168px;
    margin-top: 0;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    transition: opacity 0.3s ease;
    justify-content: center;
}

.top-sites-link:hover {
    text-decoration: underline;
}

.top-sites-link svg {
    width: 27.168px;
    height: 24px;
}

@media (min-width: 1200px) {
    .top-sites-link {
        margin-top: var(--spacing-lg);
        justify-content: flex-start;
        font-size: 24px;
    }
}

/* ===================================
   What Is Section
   =================================== */
.what-is {
    margin-top: var(--spacing-md);
}

.what-is__title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1;
}

.what-is__content {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 50px;
}

.what-is__content p {
    margin-bottom: 1em;
    text-align: justify;
}

.what-is__content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .what-is {
        margin-top: var(--spacing-lg);
        max-width: 1483px;
    }
    
    .what-is__title {
        text-align: left;
    }
    
    .what-is__content {
        text-align: left;
    }
}

/* ===================================
   Carousel / Testimonial
   =================================== */
.carousel {
    margin-top: var(--spacing-md);
    position: relative;
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius);
    background: var(--gradiant-01, linear-gradient(356deg, var(--Color-01, #7B2FF7) 3.11%, #A67DE9 96.89%));
    height: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carousel__content {
    max-width: 232px;
    text-align: left;
}

.carousel__author {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-white);
}

.carousel__text {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
    color: var(--color-white);
    padding-bottom: 30px;
}

.carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42.667px;
    height: 85.333px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.carousel__nav:hover {
    opacity: 0.7;
}

.carousel__nav--prev {
    left: 0;
}

.carousel__nav--next {
    right: 0;
}

.carousel__nav svg {
  width: 6px;
  height: 12px;
}

.carousel__indicators {
    position: absolute;
    bottom: 33.5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.carousel__indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
}

.carousel__indicator--active {
    background-color: var(--color-white);
}

@media (min-width: 1200px) {
    .carousel {
        height: 296px;
        margin-top: var(--spacing-lg);
    }
    
    .carousel__content {
        max-width: 628px;
    }
    
    .carousel__nav--prev {
        left: 19px;
    }
    
    .carousel__nav--next {
        right: 20px;
    }
    
    .carousel__indicators {
        gap: 25.6px;
    }
    
    .carousel__indicator {
        width: 10.667px;
        height: 10.667px;
    }

    .carousel__nav svg {
      width: 16px;
      height: 32px;
    }
    
}

/* ===================================
   FAQ Image
   =================================== */
.faq-image {
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 50px;
}

.faq-image__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 1200px) {
    .faq-image {
        width: 40%;
        height: 100%;
        margin: 0 auto;
        height: fit-content;
    }

    .faq-image__img {
      width: 100%;
      height: 100%;
  }
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    margin-top: var(--spacing-md);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item {
    width: 100%;
    text-align: left;
    background: transparent;
    padding: 0;
    transition: opacity 0.3s ease;
}

.faq__item:hover {
    opacity: 0.8;
}

.faq__item-header {
    display: flex;
    align-items: center;
    gap: 23px;
    margin: 20px 0;
    width: 100%;
}

.faq__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__question {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: #252424;
    line-height: 1;
    flex: 1;
}

.faq__divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
}

.faq__box {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq__box.has-toggle .faq__item-body {
  max-height: 0;
  opacity: 0;
}

.faq__box.has-toggle.is-open {
 margin-top: 20px;
}

.faq__box.has-toggle.is-open .faq__item-body {
  max-height: 5000px;
  opacity: 1;
  width: 100%;
  padding: 10px 0 30px;
}

.faq__box.has-toggle.is-open .faq__item-body p{
  font-size: 16px;
  text-align: justify;
}

.faq__title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq__title h2{
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1200px) {
    .faq {
        display: flex;
        flex-direction: column;
    }

    .faq__title {
      display: flex;
      flex-direction: column;
    }

    .faq__container {
        width: 100%;
    }
    
    .faq__title h2{
        font-size: var(--font-size-h1);
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        margin: var(--spacing-md) 0;
    }
    
    .faq__list {
        gap: 5px;
    }
    
    .faq__item-header {
        gap: 41.316px;
        margin: 10px 0 43.112px;
    }
    
    .faq__icon {
        width: 32.334px;
        height: 32.334px;
    }
    
    .faq__divider {
        width: 100%;
    }

    .faq__question {
      font-size: 24px;
      font-weight: var(--font-weight-bold);
      color: #252424;
      line-height: 1;
      flex: 1;
      max-width: 70%;
  }

    .faq__box.has-toggle.is-open .faq__item-body {
      max-height: 5000px;
      opacity: 1;
      width: 100%;
      padding: 30px 0;
    }

    .faq__box.has-toggle.is-open .faq__item-body p{
      font-size: 24px;
      text-align: justify;
    }
}

/* ===================================
   Verdict Section
   =================================== */
.verdict {
    margin-top: 58px;
}

.verdict__header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.verdict__title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.verdict__stars {
    display: flex;
    gap: 4.857px;
}

.verdict__stars.mobile {
    display: flex;
}

.verdict__stars.desktop {
  display: none;
}

.verdict__stars svg {
    width: 20.514px;
    height: 19.211px;
}

.verdict__content {
    margin-bottom: var(--spacing-md);
}

.verdict__subtitle {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
}

.verdict__text {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

.verdict__card {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius);
    height: 107px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    margin: var(--spacing-md) 0 calc(var(--spacing-md) * 2);
}

.verdict__card-logo-img {
    width: 300px;
    height: auto;
}

.verdict__card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.verdict__card-score {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 2px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23.4px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    
}

@media (min-width: 1200px) {
    .verdict {
        margin-top: var(--spacing-lg);
    }

    .verdict__card-rating.mobile {
      display: none;
    }
    
    .verdict__header {
        flex-direction: row;
        align-items: center;
        gap: 128px;
        margin-bottom: var(--spacing-md);
    }
    
    .verdict__stars {
        gap: 6.456px;
    }
    
    .verdict__stars svg {
        width: 57.979px;
        height: 54.295px;
    }
    .verdict__stars.mobile {
      display: none;
  }
  
  .verdict__stars.desktop {
    display: flex;
    align-items: center;
  }
    
    .verdict__card {
        height: 189px;
        padding: 40px 62px;
        max-width: 1487px;
    }
    
    .verdict__card-score {
        width: 107.824px;
        height: 107.824px;
        font-size: 48.521px;
    }
}

/* ===================================
   Footer
   =================================== */
   .footer {
    background: #ffffff;
    border-top: 1px solid #e6ebf4;
    padding: 72px 0;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    .footer {
      padding: 50px 0;
    }
  }
  @media (max-width: 767px) {
    .footer {
      padding: 31px 0;
    }
  }
  .footer__container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 1920px) {
    .footer__container{
        padding: 0 308px;
      }
    }

    @media (min-width: 1200px) and (max-width: 1919px) {
      .footer__container{
        padding: 0 160px;
      }
    }

  @media (min-width: 768px) and (max-width: 1199px) {
    .footer__container{
      padding: 0 50px;
    }
  }
  .footer__logo img {
    width: 322px;
    height: 50px;
  }
  @media (max-width: 767px) {
    .footer__logo img {
      height: 40px;
    }
  }
  .footer__links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 68px;
    justify-content: start;
    align-items: center;
  }
  @media (min-width: 768px) and (max-width: 1199px) {
    .footer__links {
      gap: 40px;
    }

    .footer__container{
      padding: 0 50px;
    }
  }
  @media (max-width: 767px) {
    .footer__links {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  .footer__column {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }
  @media (max-width: 767px) {
    .footer__column {
      gap: 15px;
    }
  }
  .footer__link {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  @media (max-width: 767px) {
    .footer__link {
      font-size: 14px;
    }
  }
  .footer__copyright {
    font-size: 16px;
    margin: 0;
    color: #000;
  }
  @media (max-width: 767px) {
    .footer__copyright {
      font-size: 14px;
      text-align: center;
    }
  }
  .footer .link-disclosure {
    display: inline-block;
    color: #7b2ff7;
    text-decoration: none;
  }
  @media (max-width: 767px) {
    .footer .link-disclosure {
      font-size: 14px;
      margin: 0 auto;
      text-align: center;
    }
  }
  .footer .link-disclosure:hover {
    text-decoration: underline;
  }
  

/* ===================================
   Utility Classes
   =================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sticky.mobile {
    display: flex !important;
}

.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%
}

.sticky a {
    border-radius: 0 !important;
    width: 100% !important
}

.cta {
    display: flex;
    align-items: center;
    height: 55px;
    justify-content: center;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    flex: 0 0 auto;
    color: var(--text-color);
    font-size: 24px;
    background: var(--primary-color);
    border-radius: 100px;
    width: 247px;
    height: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}