@layer reset {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.3;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
  }

  p,
  li {
    text-wrap: pretty;
  }

  p:empty {
    display: none;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}

@layer base {
  :root {
    --black: #071620;
    --white: #fff;
    --primary: #667eff;
    --light-primary: #6296b9;
    --dark-primary: oklch(from var(--primary) clamp(0, l - 0.22, 1) calc(c * 0.92) h);
    --dark-gray: #030e18;
    --light-gray: #e0e0e0;
    --gray: #6d6565;
    --darkerGrey: #363636;
    --grayMd: #b4b4b4;
    --green: #2fbd21;

    --border-radius-xS: 0.25rem;
    --border-radius-1: 1rem;
    --border-radius-2: 1.5rem;
    --border-radius-3: 2rem;
    --border-radius-4: 3rem;
  }

  @view-transition {
    navigation: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }

  body {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: var(--light-primary);
    background-color: var(--black);
    position: relative;
    overflow-x: hidden;
  }

  h1 {
    font-weight: 700;
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
    font-weight: 700;

    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }

  a {
    color: var(--primary);
    text-decoration: none;
  }

  .email-input{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    display: block;
    width: 480px;
    margin-inline: auto;
    margin-bottom: 10px;
  }

  #pay-button{
    background-color: #0074D4;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #99C7EE;
    border-radius: 5px;
    border: 1px solid #035497;
    cursor: pointer;
  }

  .btn {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    background-color: var(--green);
    border-radius: var(--border-radius-xS);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.2s ease-out;
    border: none;
    display: block;
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);

    @media (max-width: 991px) {
      padding: 1.25rem;
      font-size: 1.75rem;
    }

    &:hover {
      transform: translateY(-3px);
    }

    &.see-more-btn {
      background: transparent;
      border: 2px solid var(--gray);
      color: var(--primary);
    }

    &.see-less-btn {
      background: transparent;
      border: 2px solid var(--gray);
      color: var(--primary);
      margin-top: 30px;
    }

    /* Loading state styles */
    &:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none !important;
    }

    .btn-loader {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-loader::after {
      content: "";
      width: 16px;
      height: 16px;
      border: 2px solid transparent;
      border-top: 2px solid currentColor;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
  }

  .trace-btn {
    position: relative;
    overflow: hidden;
    border: 2px solid #6dfc60b9;
  }

  .trace-btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
      linear-gradient( 90deg, #fff 50%, #ffffff3d 50%) top,
      linear-gradient(180deg, #fff 50%, #ffffff3d 50%) right,
      linear-gradient(270deg, #fff 50%, #ffffff3d 50%) bottom,
      linear-gradient(360deg, #fff 50%, #ffffff3d 50%) left;
    background-size: 200% 2px, 2px 200%, 200% 2px, 2px 200%;
    background-repeat: no-repeat;
    animation: trace 2.5s ease-out infinite;
  }

  @keyframes trace {
    0% {
      background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    }

    100% {
      background-position: 100% 0, 100% 100%, 0 100%, 0 0;
    }
  }

}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1200px;
    --wrapper-padding: 1rem;

    max-width: var(--wrapper-max-width);
    margin-inline: auto;
    padding-inline: var(--wrapper-padding);

    /* helps to match the Figma file */
    box-sizing: content-box;
  }

  .wrapper[data-width="narrow"] {
    --wrapper-max-width: 720px;
  }

  .wrapper[data-width="medium"] {
    --wrapper-max-width: 960px;
  }

  .wrapper[data-width="narrowXS"] {
    --wrapper-max-width: 400px;
  }

  .wrapper[data-width="wide"] {
    --wrapper-max-width: 1440px;
  }

  .section {
    padding-block: 3.5rem;

    @media (max-width: 767px) {
      padding-block: 2.5rem;
    }
  }

  .section[data-padding="large"] {
    padding-block: 7.5rem;
  }

  .w-100 {
    width: 100% !important;
  }
}

@layer components {
  /* Home Apps */

  .homeApps {
    padding: 5rem 0rem;

    &.Watch .content-section-layout {
      flex-direction: row-reverse;

      .section-right {
        justify-items: baseline;
      }

      @media (max-width: 991px) {
        flex-direction: column;
        gap: 3rem;
      }
    }

    .content-section-layout {
      display: flex;
      justify-content: space-between;
      gap: 3rem;
      align-items: flex-start;

      @media (max-width: 991px) {
        flex-direction: column;
        gap: 2rem;
      }

      @media (max-width: 576px) {
        align-items: center;
      }
    }

    .section-right {
      min-width: 0;
      justify-items: end;
    }

    .section-left {
      flex: 0 0 300px;
      max-width: 450px;

      @media (max-width: 991px) {
        max-width: 100%;
        flex: 1;
      }
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 0;
      text-align: left;
    }

    .section-subtitle {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.3;
      margin: 0;

      @media (max-width: 767px) {
        font-size: 22px;
      }
    }

    .seeAll {
      border-radius: 2.96875rem;
      background: linear-gradient(180deg, #12c2e9 0%, #b23cff 93.75%);
      box-shadow: 0 15px 15px 0 #46f8ff inset;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      justify-content: center;
      text-align: center;
      font-size: 1.75rem;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      text-transform: uppercase;

      .arrow {
        font-size: 30px;
        transition: transform 0.3s ease;
      }

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);

        .arrow {
          transform: translateX(3px);
        }
      }
    }

    .content-grid {
      --item-width: 150px;
      display: grid;
      grid-template-columns: repeat(4, var(--item-width));
      gap: 1rem;
    }

    .content-item {
      position: relative;
      cursor: pointer;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 2/3;
      max-width: var(--item-width);

      .img-radial {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 8px;
        transition: all 0.3s ease;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          filter: grayscale(0.25) brightness(0.7) contrast(1.1);
          transition: all 0.3s ease;
        }
      }

      &:hover {
        .img-radial {
          transform: scale(1.05);

          img {
            filter: grayscale(0) brightness(1) contrast(1);
          }
        }
      }
    }

    @media (min-width: 768px) and (max-width: 1199px) {
      padding: 4rem 1rem;
    }

    .section-description {
      font-size: 14px;
      color: var(--grayMd);

      @media (max-width: 767px) {
        max-width: 100%;
        margin-top: 1.5rem;
      }
    }

    .section-icon {
      width: 30px;
    }
  }

  .headpart {
    h1 {
      font-size: 1.75rem;
      text-transform: initial;
      color: var(--white);
    }

    form {
      width: 100%;
    }
  }

  /* Section Title Badge with Icon */

  .section-title-badge {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.25rem;
    position: relative;
  }

  .badge-icon {
    position: relative;
    width: 104px;
    height: 104px;
    flex-shrink: 0;
  }

  .icon-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 104px;
    height: 104px;
  }

  .icon-play {
    position: absolute;
    left: 41.5px;
    top: 39.5px;
    width: 21px;
    height: 25px;
  }

  .section-title {
    position: absolute;
    left: 0;
    top: 52px;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding-left: 75px;
  }

  .section-heading {
    font-size: 36px !important;
    font-weight: 500 !important;
    line-height: 1.04 !important;
    color: var(--white) !important;
    margin: 0 0 1.25rem 0 !important;
  }

  .section-description {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--light-primary) !important;
    margin: 0 !important;
  }

  /* Games Grid Layout */
  .games-grid,
  .fitness-grid,
  .documentaries-grid,
  .astrology-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 150px) !important;
    grid-template-rows: repeat(2, 200px) !important;
    gap: 20px !important;
    width: 660px;
  }

  .games-grid .content-item,
  .fitness-grid .content-item,
  .documentaries-grid .content-item,
  .astrology-grid .content-item {
    border-radius: 10px;
    overflow: hidden;
    width: 150px;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .games-grid .content-item img,
  .fitness-grid .content-item img,
  .documentaries-grid .content-item img,
  .astrology-grid .content-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .games-grid .content-item:hover,
  .fitness-grid .content-item:hover,
  .documentaries-grid .content-item:hover,
  .astrology-grid .content-item:hover {
    transform: scale(1.05);
  }

  /* Section Specific Layouts */
  .games-section .content-section-layout,
  .documentaries-section .content-section-layout {
    display: flex;
    gap: 100px;

    @media (max-width: 991px) {
      flex-direction: column;
      gap: 3rem;
    }

    @media (max-width: 576px) {
      align-items: center;
    }
  }

  .fitness-section .content-section-layout {
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;

    @media (max-width: 991px) {
      flex-direction: column;
      gap: 3rem;
    }

    @media (max-width: 576px) {
      align-items: center;
    }
  }

  .games-section .section-left,
  .fitness-section .section-left,
  .documentaries-section .section-left,
  .astrology-section .section-left {
    flex: 1;
    min-width: 0;
  }

  .games-section .section-right,
  .fitness-section .section-right,
  .documentaries-section .section-right,
  .astrology-section .section-right {
    flex-shrink: 0;
  }

  /* Responsive Design */
  @media (max-width: 1199px) {

    .games-grid,
    .fitness-grid,
    .documentaries-grid,
    .astrology-grid {
      grid-template-columns: repeat(4, 1fr) !important;
      width: 100%;
      max-width: 600px;
    }

    .games-grid .content-item,
    .fitness-grid .content-item,
    .documentaries-grid .content-item,
    .astrology-grid .content-item {
      width: 100%;
    }
  }

  @media (max-width: 991px) {

    .games-section .content-section-layout,
    .documentaries-section .content-section-layout {
      flex-direction: column !important;
      gap: 3rem;
    }

    .astrology-section .content-section-layout,
    .fitness-section .content-section-layout {
      flex-direction: column-reverse !important;
    }

    .section-heading {
      font-size: 36px !important;
    }

    .section-description {
      font-size: 18px !important;
    }

    .fitness-section .section-header,
    .astrology-section .section-header {
      text-align: left;
    }

    .fitness-section .section-title-badge,
    .astrology-section .section-title-badge {
      justify-content: flex-start;
    }
  }

  @media (max-width: 767px) {
    .section-heading {
      font-size: 28px !important;
    }

    .section-description {
      font-size: 16px !important;
    }

    .section-title {
      font-size: 20px;
    }

    .badge-icon {
      width: 80px;
      height: 80px;
    }

    .icon-circle {
      width: 80px;
      height: 80px;
    }

    .icon-play {
      left: 32px;
      top: 30px;
      width: 16px;
      height: 20px;
    }

    .section-title {
      left: 0;
      top: 40px;
      padding-left: 60px;
    }

    .games-grid,
    .fitness-grid,
    .documentaries-grid,
    .astrology-grid {
      grid-template-columns: repeat(3, 1fr) !important;
      grid-template-rows: repeat(2, minmax(120px, 1fr)) !important;
      gap: 10px !important;
    }
  }

  @media (max-width: 480px) {

    .games-grid,
    .fitness-grid,
    .documentaries-grid,
    .astrology-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      grid-template-rows: repeat(4, minmax(120px, 1fr)) !important;
      gap: 10px !important;
    }
  }

  /* Pricing Section */
  .pricing-section {
    background-color: #6296b9;
    border-radius: 10px;
    padding: 40px 50px;
    margin: 0px auto;
    max-width: 900px;
    width: 100%;
  }

  .pricing-content {
    text-align: center;
    color: var(--black);
  }

  .pricing-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
  }

  .pricing-description {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin: 0;
  }

  .pricing-description strong {
    font-family: "Inter", sans-serif;
    font-weight: 800;
  }

  @media (max-width: 767px) {
    .pricing-section {
      padding: 30px 24px;
    }

    .pricing-title {
      font-size: 18px;
      margin-bottom: 16px;
    }

    .pricing-description {
      font-size: 14px;
    }
  }

  /* Animations */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /* New Footer Design */
  .footer-new {
    background-color: var(--black);
    padding: 80px 0;
    width: 100%;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-button-container {
    height: 95px;
    width: 100%;
    max-width: 540px;
    position: relative;
  }

  .footer-btn {
    position: relative;
    width: 100%;
    height: 100%;
    padding-block: 1.4rem;
    border-radius: 47.5px;
    border: none;
    background: linear-gradient(180deg,
        rgba(18, 194, 233, 0.5) 0%,
        rgba(178, 60, 255, 0.1) 62.5%,
        rgba(18, 194, 233, 0) 93.75%);
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .footer-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 47.5px;
    box-shadow: 0px 15px 15px 0px rgba(70, 248, 255, 1) inset;
    pointer-events: none;
  }

  .footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 10px 30px rgba(70, 248, 255, 0.3);
  }

  .footer-terms-text {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #718faa;
    text-align: center;
    max-width: 900px;
    margin: 0;
  }

  .footer-link {
    color: #718faa;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    cursor: pointer;
  }

  .footer-link:hover {
    color: #12c2e9;
  }

  .footer-links {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    color: #718faa;
    text-align: center;
    max-width: 900px;
  }

  .footer-links-row {
    margin-bottom: 5px;
  }

  .footer-link-item {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #12c2e9;
    cursor: pointer;
  }

  .footer-link-item:hover {
    text-decoration: underline;
  }

  .footer-separator {
    color: #718faa;
  }

  .footer-copyright {
    margin-top: 5px;
    margin-bottom: 0;
  }

  @media (max-width: 767px) {
    .footer-new {
      padding: 60px 0;
    }

    .footer-content {
      gap: 40px;
      padding: 0 16px;
    }

    .footer-button-container {
      width: 100%;
      max-width: 320px;
      height: 80px;
    }

    .footer-btn {
      font-size: 24px;
    }

    .footer-terms-text {
      font-size: 12px;
      line-height: 16px;
    }

    .footer-links {
      font-size: 13px;
    }
  }

  /* VIP Addon Checkbox Custom Style */
  .vip-addon-checkbox-wrapper {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
  }

  .vip-addon-checkbox {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #878787;
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    transition: box-shadow 0.2s;
  }

  .vip-addon-checkbox:checked {
    background: var(--white);
  }

  .vip-addon-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 4px;
    height: 6px;
    border: solid var(--black);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
  }

  /* Footer  */

  .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .logos img {
    width: 100px;
  }

  /* Modals  */
  .modal,
  .full-bck {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: #38436d;
    /* Fallback color */
    background-color: #272c418f;
    /* Black w/ opacity */
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 15px 0;
  }

  .full-bck {
    display: flex;
  }

  /* Modal Content */
  .modal-content {
    background-color: var(--white);
    margin: auto;
    border-radius: 15px;
    width: 70%;
  }

  .modal-content.modal-max-width {
    width: 100% !important;
    max-width: 540px !important;
  }

  .modal-main-content {
    padding: 30px 40px 40px;
  }

  /* The Close Button */
  .close {
    color: var(--gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 5px;
    top: 5px;
    background: transparent;
    border: none;

    &.modal_close {
      right: 5px;
      top: -5px;
    }
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  /* End of Modal */

  /* Modal First and Second Content */

  .modal-content.modal-max-width h3 {
    font-size: 20px;
    font-weight: 600;
    color: #010101;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    min-height: 32px;
  }

  .second-step {
    padding-left: 42px;
    margin: 0 0 12px !important;
  }

  .modal-content.modal-max-width h3:before,
  .first-step.number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    background: #d9d9d9;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* .first-step:before {
  content: "1";
} */

  .second-step:before {
    content: "2";
  }

  .modal-steps .head-text {
    font-size: 20px;
    line-height: 28px;
    color: #6296b9;
    font-weight: 700;
    margin: 0 0 50px;
  }

  .modal-steps .head-text span {
    display: block;
    font-weight: 800;
  }

  .modal-steps {
    margin: auto;
    padding: 50px 0;
  }

  .rounded_number {
    background: #010101;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
  }

  .steps {
    max-width: 900px;
    gap: 50px;
    margin: 0 auto;

    @media (max-width: 1199px) {
      gap: 30px;
    }

    @media (max-width: 767px) {
      gap: 60px;
    }
  }

  .step-box {
    position: relative;
    border: 1px solid #6296b9;
    border-radius: 10px;
    padding: 40px 20px 20px;
    flex: 1;
    min-width: 0;
  }

  .step-number {
    position: absolute;
    top: -31px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6296b9 0%, #9851fb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
  }

  .steps p {
    font-size: 20px;
    line-height: 28px;
    color: #6296b9;
    font-weight: 400;
    margin: 0;
  }

  .modal-steps-email {
    width: fit-content;
    margin: auto;
    padding: 0 50px;
    position: relative;

    .head-text {
      font-size: 18px !important;
      line-height: 30px !important;
      background: white !important;
      position: relative !important;
      width: fit-content !important;
      margin: 0 auto 20px !important;
      padding: 0 10px !important;
      font-weight: 700 !important;
    }

    .head-text span {
      display: block;
      font-weight: 800;
    }

    .steps {
      gap: 20px;

      p {
        font-size: 13px;
      }

      @media screen and (max-width: 767px) {
        gap: 20px;
      }

      @media screen and (max-width: 374px) {
        gap: 10px;
      }
    }
  }

  /* Features Banner */
  .features-banner {
    background: linear-gradient(180deg, #12c2e9 0%, #9851fb 100%);
    padding: 100px 240px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;

    @media screen and (max-width: 1400px) {
      padding: 80px 120px;
    }

    @media screen and (max-width: 1024px) {
      padding: 60px 60px;
      gap: 20px;
    }

    @media screen and (max-width: 767px) {
      padding: 40px 20px;
      gap: 15px;
    }
  }

  .features-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 1440px;

    @media screen and (max-width: 1024px) {
      flex-wrap: wrap;
      gap: 20px;
    }

    @media screen and (max-width: 767px) {
      flex-direction: column;
      gap: 15px;
    }
  }

  .feature-card {
    flex: 1;
    min-width: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    @media screen and (max-width: 1024px) {
      flex: 1 1 calc(50% - 10px);
      min-width: calc(50% - 10px);
    }

    @media screen and (max-width: 767px) {
      flex: 1 1 100%;
      padding: 20px 20px 30px;
    }
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    svg {
      width: 100%;
      height: 100%;
      display: block;
    }
  }

  .feature-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    color: #030e18;
    margin: 0;
    width: 100%;

    @media screen and (max-width: 767px) {
      font-size: 16px;
    }
  }

  .round-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--light-primary);
    border-radius: 50%;
    color: var(--black);
    font-size: 20px;
    font-weight: 800;
    padding: 0;
  }

  .form-group {
    input {
      width: 100%;
      padding: 12px 40px;
      font-size: 16px;
      border: 2px solid #d6e4ee;
      border-radius: 4px;
      outline: none;
      transition: border-color 0.3s ease;

      &:focus {
        border-color: var(--primary);
      }
    }
  }

  /* Free Subscription Box */
  .free-subscription-box {
    background-color: #eaf4f9;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .subscription-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .subscription-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #071620;
    margin: 0;
    white-space: nowrap;
  }

  .subscription-price {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2fbd21;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .currency-symbol {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
  }

  .subscription-note {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #071620;
    margin: 0;
    line-height: normal;
  }

  .subscription-features {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .feature-icons {
    display: grid;
    grid-template-columns: repeat(2, 24px);
    grid-template-rows: repeat(2, 24px);
    gap: 5px;
    flex-shrink: 0;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
    display: block;
  }

  .feature-text {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #406486;
    margin: 0;
    flex: 1;
  }

  @media screen and (max-width: 767px) {
    .subscription-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .subscription-title {
      font-size: 14px;
    }

    .subscription-price {
      font-size: 20px;
    }

    .subscription-note {
      font-size: 11px;
    }

    .subscription-features {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

    .feature-text {
      font-size: 16px;
      line-height: 19px;
    }
  }
}

@layer utilites {
  .background-dark {
    background: var(--dark-gray) !important;
  }

  .background-primary {
    background: var(--primary);
  }

  .background-gradient {
    background: linear-gradient(180deg, #12c2e9 0%, #9851fb 100%);
  }

  .d-none,
  .hidden {
    display: none !important;
  }

  .d-flex {
    display: flex;
  }

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

  .d-flex .column {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .align-center {
    align-items: center;
  }

  .align-baseline {
    align-items: baseline;
  }

  .text-center {
    text-align: center;
  }

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

  .text-white {
    color: var(--white);
  }

  .text-black {
    color: var(--black);
  }

  .small-text {
    font-size: 10px;
    margin-top: 5px;
  }

  .col-4 {
    width: 35%;

    @media screen and (min-width: 768px) and (max-width: 1279px) {
      width: 45%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-7 {
    width: 60%;

    @media screen and (min-width: 768px) and (max-width: 1279px) {
      width: 50%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-6 {
    width: 50%;

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .m-auto {
    margin: 0 auto;
  }

  .w-80 {
    width: 80%;
  }

  .gap-1 {
    gap: 0.5rem;
  }

  .gap-2 {
    gap: 0.625rem;
  }

  .gap-3 {
    gap: 1rem;
  }

  .gap-5 {
    gap: 3rem;
  }

  .gap-20 {
    gap: 20px;
  }

  .gap-30 {
    gap: 30px;
  }

  .gap-50 {
    gap: 50px;
  }

  .mt-0 {
    margin-top: 0 !important;
  }

  .mt-1 {
    margin-top: 0.625rem !important;
  }

  .mt-2 {
    margin-top: 1rem !important;
  }

  .mt-3 {
    margin-top: 1.5rem !important;
  }

  .mt-4 {
    margin-top: 2rem !important;
  }

  .mt-5 {
    margin-top: 2.5rem !important;
  }

  .mb-0 {
    margin-bottom: 0 !important;
  }

  .mb-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-2 {
    margin-bottom: 1rem !important;
  }

  .mb-3 {
    margin-bottom: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 2rem !important;
  }

  .mb-5 {
    margin-bottom: 2.5rem !important;
  }

  .pt-0 {
    padding-top: 0 !important;
  }

  .pt-1 {
    padding-top: 0.625rem !important;
  }

  .pt-2 {
    padding-top: 1rem !important;
  }

  .pt-3 {
    padding-top: 1.5rem !important;
  }

  .pt-4 {
    padding-top: 2rem !important;
  }

  .pt-5 {
    padding-top: 2.5rem !important;
  }

  .pb-0 {
    padding-bottom: 0 !important;
  }

  .pb-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-2 {
    padding-bottom: 1rem !important;
  }

  .pb-3 {
    padding-bottom: 1.5rem !important;
  }

  .pb-4 {
    padding-bottom: 2rem !important;
  }

  .pb-5 {
    padding-bottom: 2.5rem !important;
  }

  .py-2 {
    padding-block: 0.625rem !important;
  }

  @media screen and (max-width: 767px) {
    .mobile-column {
      flex-direction: column;
    }
  }

  .reverse-mobile {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }

  .hide-lg {
    @media screen and (min-width: 992px) {
      display: none !important;
    }
  }

  .hide-xs {
    @media screen and (max-width: 991px) {
      display: none !important;
    }
  }
}

/* Thank You Modal Styles */
.modal.thankyou {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content.thankyou-modal {
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 540px;
  width: 90%;
  margin: auto;
}

.thankyou-icon {
  width: 57px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0;
}

.thankyou-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #071620;
  margin: 0 0 4px 0;
}

.thankyou-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #071620;
  margin: 0;
}

.btn-thankyou {
  background-color: #2fbd21;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 16px 24px;
  width: 100%;
  max-width: 360px;
  height: 52px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-thankyou:hover {
  background-color: #28a01d;
}

.btn-thankyou:active {
  background-color: #228a19;
}

@media screen and (max-width: 576px) {
  .modal-content.thankyou-modal {
    padding: 24px 20px 40px;
    gap: 16px;
  }

  .thankyou-title {
    font-size: 20px;
    line-height: 26px;
  }

  .thankyou-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-thankyou {
    font-size: 16px;
    padding: 14px 20px;
    height: 48px;
  }
}

/* Error Modal Styles */
.modal.error-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(39, 44, 65, 0.56);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.modal-content.error-modal-content {
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 40px 60px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto;
}

.error-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.error-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.error-text {
  text-align: center;
  width: 100%;
  max-width: 440px;
}

.error-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #000000;
  margin: 0 0 4px 0;
}

.error-message {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  margin: 0;
}

.error-btn {
  background-color: #2fbd21;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 16px 176.5px;
  width: 360px;
  height: 52px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.error-btn:hover {
  background-color: #28a01d;
}

.error-btn:active {
  background-color: #228a19;
}

@media screen and (max-width: 576px) {
  .modal-content.error-modal-content {
    padding: 24px 20px 40px;
    gap: 16px;
    max-width: calc(100% - 30px);
  }

  .error-icon {
    width: 44px;
    height: 44px;
  }

  .error-title {
    font-size: 20px;
    line-height: 26px;
  }

  .error-message {
    font-size: 14px;
    line-height: 20px;
  }

  .error-btn {
    font-size: 16px;
    padding: 14px 20px;
    width: 100%;
    max-width: 280px;
    height: 48px;
  }
}