@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

@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.6;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
    font-size: 1.6em;
  }

  h1,
  h2,
  h3,
  h4 {
    font-optical-sizing: auto;
    font-style: normal;
  }

  p,
  li {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    margin: 1rem 0;
  }

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

@layer base {
  :root {
    --font-body: "Outfit", sans-serif;
    --font-heading: "Cormorant Garamond", serif;

    --black: #0d0d0d;
    --white: #fff;
    --primary: #768ec0;
    --dark-gray: #1f1f1f;
    --gray: #697186;
    --light-gray: #f0f0f0;
    --gradient-primary: linear-gradient(#b8caf5, #82a2dc);
    --gradient-secondary: linear-gradient(var(--light-primary), var(--primary));
    --light-primary: oklch(from var(--primary) clamp(0, l + 0.22, 1) calc(c * 0.9) h);
    --dark-primary: oklch(from var(--primary) clamp(0, l - 0.22, 1) calc(c * 0.92) h);
    --surface-accent: oklch(from var(--primary) clamp(0, l - 0.28, 1) calc(c * 0.15) h);
    --status-text: oklch(from var(--primary) clamp(0, l - 0.35, 1) calc(c * 0.9) h);
    --status-bg: oklch(from var(--primary) clamp(0, l + 0.28, 1) calc(c * 0.18) h);
    --status-border: oklch(from var(--primary) clamp(0, l + 0.18, 1) calc(c * 0.25) h);
    --focus-shadow: oklch(from var(--primary) clamp(0, l + 0.05, 1) calc(c * 0.75) h / 0.4);

    --border-radius-1: 0.5rem;
    --border-radius-2: 1.25rem;
    --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: var(--font-body);
    font-size: 10px;
    line-height: 1.3;
    color: var(--white);
    background: var(--dark-gray);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-family: var(--font-heading);
    font-size: 4em;
    font-weight: 600;
    margin: 0;

    span {
      color: var(--primary);
    }

    strong {
      font-weight: 500;
    }

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

  h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;

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

    span {
      color: var(--primary);
    }
  }

  h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    margin: 0;

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

  a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
  }

  .btn {
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary);
    border-radius: var(--border-radius-1);
    border: 1.5px solid transparent;
    cursor: pointer;
    display: block;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    transition: all 0.2s ease-out;
    width: fit-content;
    min-width: 240px;
    text-transform: uppercase;
    text-align: center;

    &:hover {
      transform: scale(1.1);
    }

    &.large {
      margin: 0;
      font-size: 2rem;
      padding: 1.25rem 3rem;
    }
  }

  .btn-img {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    transition: 0.2s ease-in-out;

    &:hover {
      transform: scale(1.05);
    }
  }

  .subtitle {
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.25rem;
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1440px;
    --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: border-box;
    width: 100%;
  }

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

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

  .wrapper[data-width="regular"] {
    --wrapper-max-width: 1280px;
  }

  .wrapper[data-width="large"] {
    --wrapper-max-width: 1680px;
  }

  .section {
    padding-block: 7rem;

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

    &.background-light {
      padding-top: 7rem;

      @media (max-width: 767px) {
        padding-top: 5rem;
      }

      + .section {
        padding-block: 7rem;

        @media (max-width: 767px) {
          padding-top: 5rem;
        }
      }
    }
  }

  .card-frame {
    padding: 50px 80px;
    border-radius: var(--border-radius-3);
    background: var(--black);

    @media (max-width: 1199px) {
      padding: 20px;
    }
  }
}

@layer components {
  /* Navigation  */
  /* Sidebar Styles */
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: var(--black);
    border-right: 1px solid var(--dark-gray);
    padding: 2rem 1rem;
    overflow-y: auto;
    z-index: 999;
    transition:
      transform 0.3s ease-in-out,
      width 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: stretch;

    @media screen and (max-width: 1199px) {
      transform: translateX(-100%);
      width: 100%;
      max-width: 280px;
      top: 0;
      z-index: 998;
      padding: 5rem 1rem 2rem;

      &.active {
        transform: translateX(0);
      }

      .sidebar-label {
        display: inline;
      }
    }

    .sidebar-close {
      display: none;
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--primary);
      cursor: pointer;
      padding: 0.5rem;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;

      @media screen and (max-width: 1199px) {
        display: flex;
      }

      &:hover {
        color: var(--light-primary);
      }

      svg {
        width: 32px;
        height: 32px;
      }
    }
  }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 997;
    backdrop-filter: blur(4px);

    @media screen and (max-width: 1199px) {
      &.active {
        display: block;
      }
    }
  }

  .sidebar-nav {
    width: 100%;
    flex: 1;
  }

  .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0 0 1rem;
    margin: 0;
    width: 100%;
    height: 100%;

    li {
      margin: 0;
    }
  }

  .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: var(--border-radius-1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    white-space: nowrap;

    @media screen and (max-width: 1199px) {
      justify-content: flex-start;
      padding: 0.875rem 1rem;
      gap: 1rem;
      white-space: normal;
    }

    .sidebar-icon {
      font-size: 1.5rem;
      min-width: 1.5rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sidebar-label {
      font-size: 0.95rem;
      font-weight: 500;
    }

    &:hover {
      background: var(--dark-gray);
      color: var(--primary);

      .sidebar-icon {
        transform: scale(1.1);
      }
    }

    &.active {
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark-primary) 100%);
      color: var(--dark-gray);
      font-weight: 600;

      .sidebar-icon {
        font-size: 1.6rem;
      }

      &:hover {
        background: linear-gradient(135deg, var(--light-primary) 0%, var(--primary) 100%);
      }
    }
  }

  /* Sidebar Contact Info */
  .sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-gray);

    @media screen and (max-width: 1199px) {
      align-items: center;
    }
  }

  .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-1);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease-in-out;
    word-break: break-word;
    width: 100%;

    @media screen and (max-width: 1199px) {
      justify-content: flex-start;
      padding: 0.75rem;
      gap: 0.75rem;
      width: 100%;

      .contact-label {
        display: block;
      }
    }

    .contact-icon {
      font-size: 1.25rem;
      min-width: 1.25rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      object-fit: contain;
    }

    .contact-label {
      font-size: 0.75rem;
      font-weight: 400;
      white-space: normal;
      overflow-wrap: break-word;
    }

    &:hover {
      background: var(--dark-gray);
      color: var(--primary);
    }
  }

  /* Sidebar Toggle Button */
  .sidebar-toggle {
    display: none;
    position: fixed;
    top: 1.25rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: var(--border-radius-1);
    color: var(--dark-gray);
    cursor: pointer;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;

    &[aria-expanded="true"] {
      opacity: 0;
    }

    @media screen and (max-width: 1199px) {
      display: flex;
    }

    &:hover {
      background: var(--light-primary);
      transform: scale(1.05);
    }

    svg {
      width: 20px;
      height: 20px;
    }
  }

  /* Main Layout Adjustment */
  .main-layout {
    display: flex;
    flex-direction: column;
    width: calc(100% - 280px);
    margin-left: 280px;
    min-height: 100vh;
    position: relative;

    @media screen and (max-width: 1199px) {
      width: 100%;
      margin-left: 0;
    }
  }

  .main-content {
    flex: 1;
    width: 100%;
  }

  .logo_header {
    width: 100%;
    max-width: 220px;
  }

  /* Hero Section */

  .page_hero {
    position: relative;
    padding-block: 5rem;
    overflow: hidden;
    isolation: isolate;

    &.page-collection-hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 2rem;
      border-radius: var(--border-radius-3);
      background:
        radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--light-primary) 56%, transparent) 0%, transparent 40%),
        linear-gradient(135deg, color-mix(in srgb, var(--white) 86%, var(--light-primary) 14%) 0%, var(--white) 100%);
      border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
      box-shadow: 0 18px 42px color-mix(in srgb, var(--primary) 12%, transparent);

      @media screen and (max-width: 991px) {
        padding: 1.5rem;
      }

      .hero-content.page {
        align-items: flex-start;
        text-align: left;
        gap: 1rem;

        @media screen and (max-width: 991px) {
          align-items: center;
          text-align: center;
        }

        .hero-heading-group {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;

          @media screen and (max-width: 991px) {
            align-items: center;
            text-align: center;
          }
        }

        .hero-eyebrow {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: fit-content;
          padding: 0.35rem 0.85rem;
          border-radius: 999px;
          background: var(--gradient-primary);
          color: var(--dark-gray);
          font-size: 0.78rem;
          letter-spacing: 1.3px;
          text-transform: uppercase;
          font-weight: 700;
        }

        h1 {
          margin: 0;
          max-width: 16ch;
          line-height: 1.12;
          color: var(--black);
        }

        p {
          color: var(--dark-gray);
          max-width: 56ch;
        }

        .hero-type-pills {
          display: flex;
          flex-wrap: wrap;
          gap: 0.5rem;
        }

        .hero-type-pill {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 0.35rem 0.65rem;
          border-radius: var(--border-radius-1);
          background: color-mix(in srgb, var(--white) 72%, var(--light-primary) 28%);
          border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
          color: var(--dark-gray);
          font-size: 0.72rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          font-weight: 700;
        }

        .hero-actions {
          display: flex;
          flex-wrap: wrap;
          gap: 0.65rem;

          @media screen and (max-width: 991px) {
            justify-content: center;
          }

          .btn.hero-picker-btn {
            margin-top: 0;
            min-width: 0;
            font-size: 0.95rem;
            padding: 0.65rem 1.15rem;
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
          }
        }
      }

      .hero-art {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-bck {
        width: 100%;
        max-height: 460px;
        object-fit: cover;
        border-radius: var(--border-radius-2);
        border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
        box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 10%, transparent);
      }
    }

    &.login::before,
    &.login::after {
      content: "";
      position: absolute;
      z-index: 0;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(8px);
      opacity: 0.7;
    }

    &.login::before {
      width: 360px;
      height: 360px;
      top: -110px;
      left: -90px;
      background: radial-gradient(circle at 30% 30%, var(--light-primary) 0%, transparent 70%);
      animation: heroFloatA 14s ease-in-out infinite;
    }

    &.login::after {
      width: 420px;
      height: 420px;
      right: -140px;
      bottom: -170px;
      background: radial-gradient(circle at 65% 65%, var(--primary) 0%, transparent 72%);
      animation: heroFloatB 18s ease-in-out infinite;
    }

    @media (prefers-reduced-motion: reduce) {
      &.login::before,
      &.login::after {
        animation: none;
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      color: var(--black);

      @media screen and (max-width: 767px) {
        align-items: center;
        text-align: center;
        min-height: auto;
      }

      span {
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 2px;
      }

      h1 {
        font-size: 3rem;
        font-weight: 600;
        color: var(--black);

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

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

      p {
        font-size: 1.25rem;
        margin: 0;
        max-width: 500px;

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

      .btn {
        background: var(--primary);
        color: var(--white);
        font-weight: 600;
        font-size: 1.25rem;
        border: none;
        padding: 1rem 3rem;
        margin-top: 20px;
      }

      img {
        max-width: 100%;
        height: auto;
        animation: fadeIn 4s ease-in-out both;
      }

      &.login-page {
        align-items: flex-start;
        text-align: left;
        margin: 0 auto;
        padding: 2.5rem;
        border-radius: var(--border-radius-3);
        background: linear-gradient(135deg, var(--light-primary) 0%, var(--white) 100%);
        border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
        box-shadow: 0 20px 50px color-mix(in srgb, var(--primary) 22%, transparent);

        @media screen and (max-width: 767px) {
          align-items: center;
          text-align: center;
          padding: 2rem 1.25rem;
        }

        .hero-eyebrow {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          background: var(--gradient-primary);
          color: var(--dark-gray);
          border-radius: 999px;
          padding: 0.4rem 1rem;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          font-size: 0.8rem;
          font-weight: 700;
        }

        h1 {
          max-width: 16ch;
          line-height: 1.15;
          margin-top: 0.5rem;
          margin-bottom: 0;
        }

        p {
          color: var(--dark-gray);
          max-width: 58ch;
        }

        .hero-points {
          margin: 0;
          padding: 0;
          list-style: none;
          display: grid;
          grid-template-columns: repeat(3, minmax(0, 1fr));
          gap: 0.75rem;
          width: 100%;

          @media screen and (max-width: 991px) {
            grid-template-columns: 1fr;
          }

          li {
            margin: 0;
            padding: 0.75rem 1rem;
            border-radius: var(--border-radius-1);
            background: color-mix(in srgb, var(--white) 70%, var(--light-primary) 30%);
            border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
            color: var(--dark-gray);
            font-size: 0.95rem;
            font-weight: 500;
          }
        }

        .hero-actions {
          width: 100%;
          align-items: center;

          @media screen and (max-width: 767px) {
            justify-content: center;
          }

          .btn {
            margin-top: 0;
            min-width: 220px;

            &.invert {
              background: transparent;
              border: 1.5px solid var(--primary);
              color: var(--primary);
            }
          }
        }

        img {
          width: 100%;
          max-width: 340px;
          margin-top: 0.5rem;

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

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes heroFloatA {
    0%,
    100% {
      transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
      transform: translate3d(28px, 18px, 0) scale(1.08);
    }
  }

  @keyframes heroFloatB {
    0%,
    100% {
      transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
      transform: translate3d(-24px, -22px, 0) scale(0.94);
    }
  }

  .login-text {
    h2 {
      font-size: 2.5rem;
      font-weight: 200;
      margin: 0 0 30px;

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

      span {
        font-family: var(--font-body);
        font-size: 1rem;
        margin-bottom: 10px;
        letter-spacing: 2px;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        display: block;
      }
    }
  }

  .lifestyle-journey {
    border-radius: var(--border-radius-3);
    padding: 2.5rem;
    background:
      radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--light-primary) 75%, transparent) 0%, transparent 55%),
      linear-gradient(135deg, color-mix(in srgb, var(--white) 80%, var(--light-primary) 20%) 0%, var(--white) 100%);
    border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);

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

    .lifestyle-journey__intro {
      margin-bottom: 1.5rem;

      h2 {
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
        color: var(--black);
      }

      p {
        margin: 0;
        color: var(--dark-gray);
        max-width: 60ch;
      }
    }

    .lifestyle-journey__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;

      @media screen and (max-width: 991px) {
        grid-template-columns: 1fr;
      }
    }

    .lifestyle-journey__card {
      margin: 0;
      background: color-mix(in srgb, var(--white) 82%, var(--light-primary) 18%);
      border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
      border-radius: var(--border-radius-2);
      padding: 1.25rem;

      h3 {
        color: var(--black);
        margin: 0 0 0.5rem;
        font-size: 1.5rem;
      }

      p {
        margin: 0;
        color: var(--dark-gray);
        font-size: 0.95rem;
      }
    }
  }

  .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-top: 30px;

    li {
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid var(--light-gray);
      font-size: 1.25rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin: 0 0 20px;

      span {
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 600;
      }
    }
  }

  .card {
    background: linear-gradient(135deg, var(--light-primary) 0%, var(--white) 100%);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-2);

    h3 {
      color: #0d0d0d;
    }

    p {
      color: #474747;
    }
  }

  .banner {
    padding-block: 8rem;
    background: url(../images/premium/icon.png) center no-repeat;
    background-size: contain;
    position: relative;

    &::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 0;
      background: rgba(0, 0, 0, 0.75);
    }

    .banner-content {
      position: relative;
      z-index: 1;

      .banner-text {
        text-align: center;
        font-size: 3.25rem;
        font-family: var(--font-heading);
        font-weight: 300;

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

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

        span {
          display: block;
          font-size: 4rem;
          color: var(--primary);
          font-weight: 200;

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

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

  /* Hero Payment  */

  .payment_logo {
    max-width: 200px;
    padding: 20px 0;
  }

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

    /* Price Cards Payment  */

    .price_cards {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
      padding: 40px 0 60px;

      h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0px;
        text-transform: uppercase;
      }

      .pricing-toggle {
        display: flex;
        justify-content: center;
        width: 90%;
        max-width: 720px;
        margin: 0 auto;
        overflow: hidden;
        gap: 10px;

        .pricing-option {
          background-color: transparent;
          padding: 20px 30px;
          cursor: pointer;
          transition:
            background-color 0.3s,
            color 0.3s;
          border-radius: 8px;
          border: solid 1px var(--light-gray);
          background: var(--light-gray);
          flex: 1;
          color: var(--black);
          justify-content: space-between;
          gap: 20px;

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

          .pricing-price {
            text-align: right;
          }

          .plan-name {
            font-family: var(--font-body);
            line-height: 30px;
            text-align: left;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;

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

          .price {
            font-family: var(--font-body);
            line-height: 30px;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 5px;

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

          .duration {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: normal;
            margin-bottom: 0;
          }

          .details {
            font-size: 14px;
            line-height: normal;
            margin-bottom: 0;
          }

          &.active {
            border: solid 1px var(--primary);
            background-color: var(--primary);
            color: var(--black);
          }
        }
      }
    }

    .headpart {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      background-color: var(--black);
      padding: 60px 0;

      h1 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
      }

      .flex-container-col {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .checkbox-group {
        margin-bottom: 15px;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        .checkbox-group input[type="checkbox"] {
          margin-top: 5px;
        }

        label {
          font-size: 14px;
          line-height: 1.5;
          display: block;
          margin-left: 10px;
          position: relative;
        }
      }

      .btn {
        padding: 18px;
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        margin: 30px auto;
        display: block;
        width: 100%;
        max-width: 360px;

        &:disabled {
          border: none;
          cursor: not-allowed;
          box-shadow: none;
          opacity: 0.5;

          &:hover {
            transform: none;
          }
        }
      }
    }
  }

  .home-page {
    .home-intro-strip {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .home-intro-card {
      padding: 2rem;
      border-radius: var(--border-radius-3);
      background:
        radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--light-primary) 65%, transparent) 0%, transparent 40%),
        linear-gradient(135deg, color-mix(in srgb, var(--white) 84%, var(--light-primary) 16%) 0%, var(--white) 100%);
      border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);

      h2 {
        color: var(--black);
        margin: 0.35rem 0 0.75rem;
      }

      p {
        margin: 0;
        color: var(--dark-gray);
        max-width: 68ch;
      }
    }

    .home-section {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    .home-section--alt {
      .home-panel {
        background:
          radial-gradient(circle at left top, color-mix(in srgb, var(--light-primary) 56%, transparent) 0%, transparent 42%),
          linear-gradient(135deg, color-mix(in srgb, var(--white) 90%, var(--light-primary) 10%) 0%, var(--white) 100%);
      }
    }

    .home-panel {
      border-radius: var(--border-radius-3);
      padding: 2rem;
      border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
      background:
        radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--light-primary) 62%, transparent) 0%, transparent 44%),
        linear-gradient(135deg, color-mix(in srgb, var(--white) 86%, var(--light-primary) 14%) 0%, var(--white) 100%);
      box-shadow: 0 18px 42px color-mix(in srgb, var(--primary) 10%, transparent);

      @media screen and (max-width: 767px) {
        padding: 1.25rem;
      }

      h2,
      h3,
      .subtitle {
        color: var(--black);
      }

      .subtitle {
        color: var(--primary);
      }
    }

    .home-text-container {
      h2 {
        color: var(--black);
        margin-bottom: 0.6rem;
      }

      h3 {
        color: var(--black);
      }

      p {
        margin: 0 auto;
        color: var(--dark-gray);
        max-width: 58ch;
        line-height: 1.5;
      }
    }

    .audio-item {
      border-bottom-color: color-mix(in srgb, var(--gray) 65%, transparent);

      h3 {
        color: var(--dark-gray);
      }
    }

    .category_card {
      img {
        border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
      }
    }
    .home-panel-image {
      width: 100%;
      max-width: 360px;
      object-fit: cover;
      border-radius: var(--border-radius-3);

      @media screen and (max-width: 1199px) {
        max-width: none;
        max-height: 350px;
      }
    }
  }

  .home-video-content {
    .home-text-container {
      width: 100%;
      max-width: 360px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      @media screen and (max-width: 1199px) {
        max-width: 162px;
      }

      &::before {
        content: "";
        background: url(../images/icons/icon-play.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 280px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-audio-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-audio.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-app-content {
    .home-text-container {
      width: 100%;
      max-width: 360px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-app-white.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-article-content {
    .home-text-container {
      width: 100%;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-article.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 40px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  /* Fix for category cards layout */

  .audio-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);

    h3 {
      font-size: 1.125rem;
      font-weight: 500;
      margin: 0;
      color: var(--white);
      font-family: var(--font-body);
    }
  }

  .audio-image-container {
    max-width: 360px;
    height: auto;

    img {
      border-radius: var(--border-radius-3);
    }
  }

  .article-item {
    max-width: 100%;

    .article-img-container {
      width: 120px;
      min-width: 120px;
      height: 120px;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      @media (max-width: 767px) {
        width: 100%;
        height: 240px;
      }

      img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    }

    .article-content {
      max-width: 100%;
      min-width: 0;

      h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin: 0;
        color: var(--white);
        font-family: var(--font-body);
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        color: var(--primary);
        font-weight: 500;
        font-size: 0.85rem;
        border: none;
        background: var(--black);
        min-width: 180px;
      }
    }

    .excerpt {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

      h1,
      h2,
      h3,
      h4,
      p,
      ul li,
      ol,
      li {
        font-size: 0.9rem;
        margin: 0;
      }
    }
  }

  .book-item {
    width: calc(25% - 23.3333px);

    @media (max-width: 767px) {
      width: calc(50% - 15px);
    }

    @media (max-width: 374px) {
      width: 100%;
    }

    .book-img-container {
      height: 240px;
      min-width: 100%;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      @media (max-width: 767px) {
        height: 200px;
      }

      img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    }

    .book-content {
      width: 100%;

      h3 {
        font-size: 1.125rem;
        font-weight: 500;
        margin: 0;
        color: var(--white);
        font-family: var(--font-body);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        color: var(--primary);
        font-weight: 500;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        background: var(--black);
        min-width: 180px;
        border: 1px solid var(--dark-gray);
      }
    }

    .excerpt {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

      h1,
      h2,
      h3,
      h4,
      p,
      ul li,
      ol,
      li {
        font-size: 0.9rem;
        color: var(--gray);
        margin: 0;
      }
    }
  }

  .testimonial-container {
    border-radius: var(--border-radius-2);
    background: var(--black);
    border: 2px solid var(--gray);
    padding: 30px;
    flex: 1;

    img {
      width: 50px;
    }

    .testimonial-footer {
      border-top: 1px solid var(--gray);
      padding-top: 1rem;

      .initial {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        color: var(--dark-gray);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.25rem;
        font-weight: 700;
      }

      .name {
        display: block;
        font-size: 1.125rem;
        font-weight: 600;
      }

      .title {
        margin-top: 5px;
        display: block;
        font-size: 1rem;
      }
    }
  }

  /* Button transition effects */

  .see-more-btn,
  .see-less-btn {
    transition: all 0.3s ease;
    border: 2px solid var(--gray);
    color: var(--primary);
    background: transparent;
    padding: 0.75rem 2rem;
    margin-block: 20px;
  }

  .see-more-btn:hover,
  .see-less-btn:hover {
    transform: translateY(-3px);
  }

  .hidden-items:empty {
    display: none !important;
  }

  /* Category Cards */

  .category_card {
    width: 100%;
    transition: transform 0.3s ease-in-out;
    margin: 0;

    @media (min-width: 768px) and (max-width: 1199px) {
      min-width: 100%;
      max-width: 100%;
    }

    @media screen and (max-width: 1199px) {
      margin-inline: auto;
    }

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

    &:hover {
      transform: translateY(-4px);

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

    img {
      width: 100%;
      height: 210px;
      overflow: hidden;
      border-radius: var(--border-radius-3);
      object-fit: cover;
      transition: all 0.3s ease-in-out;
      filter: brightness(0.5) grayscale(0.25) contrast(1.1);

      @media (min-width: 768px) and (max-width: 1199px) {
        border-radius: var(--border-radius-2);
      }
    }

    .cardsTitle {
      padding-top: 1rem;
      font-weight: 600;
      width: 100%;
      font-size: 0.9rem;
      font-family: var(--font-body);
      z-index: 2;
      margin: 0;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      color: var(--white);
    }

    .excerpt,
    .excerpt p {
      color: var(--white);
      font-size: 0.8rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      /* number of lines to show */
      line-clamp: 2;
      -webkit-box-orient: vertical;
      margin: 0;
    }
  }

  .app-section {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    overflow-x: auto;
    flex-wrap: wrap;

    > a {
      flex: 1;
    }
  }

  .apps {
    .app-section {
      > a {
        flex: 1;
        max-width: 142px;

        @media (max-width: 1199px) {
          min-width: 20%;
        }

        @media (min-width: 1200px) {
          min-width: 10%;
        }

        @media (max-width: 767px) {
          min-width: 45%;
        }
      }
    }
  }

  .item-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    overflow-x: auto;
    flex-wrap: wrap;

    > a {
      flex: 1;

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

  /* Categorie Pills  */

  .features-bar {
    margin: 0;
    flex-wrap: wrap;

    @media screen and (max-width: 767px) {
      justify-content: center;
    }

    .labels {
      .item-label {
        display: inline-block;
        padding: 5px 10px;
        background: var(--primary);
        color: var(--black);
        font-weight: 600;
        font-family: var(--font-body);
        border-radius: 5px;
        max-height: fit-content;
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;

      > img {
        width: 15px;
      }

      > span {
        font-size: 1.5em;
      }
    }
  }

  /* Scrollbar  */

  /* width */
  ::-webkit-scrollbar {
    width: 15px;
    height: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.329);
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--surface-accent);
    border-radius: 10px;
  }

  /* Support pages  */

  .contact__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 60%;
    font-size: 1rem;
    line-height: 1.3;

    h2,
    h3 {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 0;
    }

    p,
    ul li {
      margin-bottom: 1rem;
    }

    a {
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 1rem;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
      margin-top: 0;
      gap: 0.5rem;

      &label {
        font-size: 0.75rem;
      }
    }
  }

  .title-section {
    margin-top: 2rem;
    h1 {
      padding: 3rem 1rem;
      background: var(--gradient-primary);
      color: var(--dark-gray);
      border-radius: var(--border-radius-3);

      @media screen and (max-width: 767px) {
        padding: 2rem 1rem;
      }
    }
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

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

    p {
      font-size: 0.875rem;
      text-align: center;
    }

    a {
      color: var(--primary);
    }

    label {
      display: flex;
      flex-direction: column;
    }

    input,
    textarea {
      padding: 0.75rem 1rem;
      border: none;
      border-radius: var(--border-radius-2);
      background: var(--light-gray);
      font-size: 1rem;
      color: var(--black);
      font-family: var(--font-body);

      &::placeholder {
        color: var(--gray);
      }
    }

    .btn {
      width: 100%;
    }
  }

  /* Single Items  */
  .single-item {
    h1 {
      font-size: 30px;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: left;
      text-wrap: inherit;

      @media screen and (max-width: 767px) {
        font-size: 24px;
        text-align: center;
      }
    }

    h2 {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .img-radial {
      width: 100%;
      max-width: 150px;
      height: 100%;
      max-height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: var(--border-radius-2);
      overflow: hidden;

      @media screen and (max-width: 767px) {
        max-width: 240px;
        max-height: 240px;
        margin: 0 auto;
      }

      &.large {
        max-width: 100%;

        @media screen and (max-width: 767px) {
          max-height: 200px;
        }
      }

      img {
        width: auto;
        min-height: 150px;
        min-width: 100%;
        border-radius: var(--border-radius-2);
        object-fit: cover;
        filter: brightness(0.7) grayscale(0.5);

        @media screen and (max-width: 767px) {
          min-height: 240px;
        }
      }
    }
    video {
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
    }

    .single-video-player {
      width: 100%;
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
      background: #000;
    }

    .single-item-info {
      width: 100%;
      padding: 0;

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

      p,
      ul li,
      ol li {
        line-height: 24px;
        margin: 0 0 20px !important;
        background: none !important;
        font-size: 16px !important;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        background: none !important;
      }

      h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      video {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      table {
        width: 100% !important;
        font-size: 15px;
        margin: 20px 0;

        @media screen and (max-width: 767px) {
          display: block;
          /* allows overflow */
          overflow-x: auto;
          /* enable horizontal scroll */
          white-space: nowrap;
          /* prevent cells from breaking */
          width: 100%;
          /* make it responsive */
          -webkit-overflow-scrolling: touch;
          /* smooth scroll on iOS */
        }

        tr {
          td {
            padding: 0.5rem 1rem;
            text-align: left !important;
          }
        }
      }
    }

    .btn {
      @media screen and (max-width: 767px) {
        margin: 0 auto;
      }
    }
  }

  .blog,
  article {
    .single-item {
      .img-radial {
        max-width: 100%;
        min-height: 300px;

        img {
          width: 100%;
          object-fit: cover;
        }
      }
    }
  }

  .unsub-container {
    border: 2px solid var(--primary);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: var(--border-radius-2);
    margin: 0 auto;

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

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      max-width: 420px;
      align-items: baseline;

      .form-group {
        padding: 0;
      }

      input {
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
        width: 100%;
        background: var(--light-gray);
        color: var(--black);
      }

      .btn {
        width: 100%;
      }
    }

    #errorMsg {
      color: var(--gray);
      font-size: 0.875rem;
    }
  }

  .h-captcha {
    overflow: auto;
    max-width: 100%;
  }

  /* Alert styles */
  .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
  }

  .alert-success {
    color: var(--status-text);
    background-color: var(--status-bg);
    border-color: var(--status-border);
  }

  .alert-error {
    color: var(--status-text);
    background-color: var(--status-bg);
    border-color: var(--status-border);
  }

  .alert p {
    margin: 0;
  }

  /* Support page */

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

    h3 {
      font-family: var(--font-body);
      color: var(--white);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 2px;
      margin: 0;

      @media (max-width: 767px) {
        text-align: center;
      }
    }

    h2 {
      font-size: 3rem;
      margin: 0;

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

    a {
      color: var(--white);
      text-decoration: underline;
      font-weight: 600;
      overflow: hidden;
      white-space: nowrap;
      /* Don't forget this one */
      text-overflow: ellipsis;
    }

    .text-large {
      color: var(--gray);
      font-size: 2.125rem;
      font-weight: 300;
      line-height: 1.3;

      @media (max-width: 767px) {
        font-size: 1.75rem;
        text-align: center;
      }
    }

    .tablet-column {
      @media (max-width: 1199px) {
        flex-direction: column;
      }
    }

    .support-video {
      width: 100%;
      height: 100%;
      border-radius: 25px;
    }

    .support-container {
      background: var(--black);
      position: relative;
      padding: 50px;
      border-radius: 25px;

      @media (max-width: 767px) {
        padding: 30px 20px;
        text-align: center !important;
      }

      &.email-frame {
        text-align: left;
        max-width: 680px;

        img {
          left: auto;
          right: 0;
          top: -20px;
        }

        a {
          font-size: 1.5rem;
          color: var(--white);
          line-height: normal;
          text-decoration: none;
        }
      }

      > .d-flex {
        position: relative;
        z-index: 1;
      }

      > img {
        position: absolute;
        left: 0;
        top: -40px;
        height: 100%;
        width: auto;
        z-index: 0;
        object-fit: contain;
        object-position: top;
        max-width: 280px;
        filter: grayscale(0.75) brightness(1.5);

        @media (max-width: 767px) {
          display: none;
        }
      }

      .support-number {
        font-size: 4rem;
        line-height: 1.25;
        font-weight: 800;
        display: block;
        color: var(--white);
        text-decoration: none;

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

      @supports (-webkit-touch-callout: none) {
        @media screen and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
          .support-number {
            color: var(--white) !important;
            text-decoration: none !important;

            a {
              color: var(--white) !important;
              text-decoration: none !important;
            }
          }
        }
      }

      .support-text {
        color: var(--gray);
        display: block;
        font-size: 0.9rem;
      }
    }

    .contact_form {
      padding: 0;
      background: transparent;
      max-width: 100%;

      .form-group {
        width: 100%;
        margin: 0;
      }
    }
  }

  .accordion {
    width: 100%;
    margin: auto;
    overflow: hidden;

    .accordion-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--gray);
      border-radius: 0 !important;

      .accordion-header {
        cursor: pointer;
        padding: 25px 0 10px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .arrow {
          color: var(--white);
          transition: transform 0.3s ease;
          margin-right: 10px;
          font-size: 18px;
        }

        span {
          font-size: 1.5rem;
          line-height: 1.3;
          color: var(--white);
          font-weight: 600;
          flex-grow: 1;
          padding-right: 20px;

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

      .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 0 15px;
        color: var(--gray);

        p {
          margin: 15px 0;
        }
      }

      &.active {
        .accordion-content {
          max-height: 450px;
          /* adjust if answers are long */
          overflow-y: auto;
        }

        .arrow {
          transform: rotate(90deg);
          /* arrow points down when open */
        }
      }
    }
  }
}

/* Footer  */

.backToTopBtn {
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px var(--primary);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
}

#backToTop {
  opacity: 0;
  visibility: hidden;

  &.visible {
    opacity: 1;
    visibility: visible;
  }
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: var(--white);
}

.backToTopBtn:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--light-primary);
  align-items: center;
}

.backToTopBtn:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.backToTopBtn::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: var(--black);
  font-size: 0px;
}

.backToTopBtn:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}

.site_footer {
  padding-block: 3.125rem;
  width: 100%;
  background: var(--black);

  a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease-out;

    &:hover,
    &:focus-visible {
      color: var(--primary);
    }
  }

  p {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 1rem;
  }

  .logos img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  @media screen and (max-width: 767px) {
    .footer_link ul {
      flex-direction: column;
      gap: 0.8rem !important;
    }

    .copyrights {
      font-size: 0.875rem;
    }
  }

  .logo_footer {
    max-width: 90px;
    height: auto;
  }

  .disclaimer {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* Modals  */
.otp-modal,
.login-modal,
.unsub-modal,
.sign-up-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;

  @media screen and (max-width: 767px) {
    padding: 1rem;
  }

  .close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
    line-height: 20px;

    @media screen and (max-width: 767px) {
      right: 1rem;
      top: 1rem;
    }
  }

  form {
    width: 100%;

    .checkbox-group {
      label {
        font-size: 0.875rem;
        display: inline;
      }

      input[type="checkbox"] {
        accent-color: var(--primary);
        min-height: auto !important;
      }
    }

    .checkbox-group {
      &:first-of-type {
        margin-top: 10px;
      }

      label {
        display: inline;
        font-size: 0.875rem;
      }
    }

    input {
      padding: 0.5rem;
      border: 1px solid var(--gray);
      border-radius: var(--border-radius-2);
    }

    .btn {
      width: 100%;
      margin-top: 1rem;
      padding: 0.75rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 3rem 6rem;

      p {
        font-size: 0.875rem;
        text-align: center;

        &:empty {
          display: none;
        }
      }

      a {
        color: var(--primary);
      }

      @media screen and (max-width: 767px) {
        margin-top: 0;
        padding: 2rem 1rem;
        max-width: 100%;

        &label {
          font-size: 0.75rem;
        }
      }
    }
  }

  h2 {
    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
      text-align: center;
      margin: 10px auto;
    }
  }

  .modal-content {
    background: var(--dark-gray);
    border-radius: var(--border-radius-2);
    border: 2px solid var(--primary);
    width: 100%;
    overflow: auto;
    max-inline-size: 600px;
    position: relative;

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

    .form-group input {
      background: var(--light-gray);
      border: 2px solid var(--gray) !important;
      border: none;
      padding: 0.5rem 1rem;
      min-height: 50px;
      color: var(--black);

      &:focus-visible {
        outline: none;
        border: 2px solid var(--primary) !important;
      }

      &::placeholder {
        color: var(--dark-gray);
      }
    }
  }

  .modal-bck {
    background: url(../images/modal-image.jpg) center no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;

    @media (max-width: 767px) {
      display: none;
    }
  }
}

/* Payment modal  */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

/* Payment Modal Styles */

#paymentModal .modal-content {
  background: var(--dark-gray);
  border-radius: var(--border-radius-2);
  border: 2px solid var(--primary);
  padding: var(--border-radius-2);
  max-width: 480px;
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;

  @media screen and (max-width: 479px) {
    padding: 20px;
    height: 90%;
    overflow-y: scroll;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .form-group {
    margin-bottom: 20px;
    gap: 8px;

    @media screen and (max-width: 767px) {
      padding: 0;
    }
  }

  label {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
  }

  input,
  textarea {
    width: 100%;
    padding: 8px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: var(--black);

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

    &::placeholder {
      color: var(--gray);
    }
  }

  .d-flex {
    display: flex;
    gap: 15px;

    .form-group {
      flex: 1;
    }
  }

  button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;

    &:hover {
      background: var(--primary);
      transform: translateY(-1px);
      box-shadow: 0 5px 15px rgba(26, 47, 163, 0.2);
    }
  }

  .close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.3s ease;

    @media screen and (max-width: 479px) {
      right: 10px;
      top: 10px;
    }

    &:hover {
      color: var(--primary);
    }
  }
}

/* Input placeholder styling */
input::placeholder {
  color: var(--dark-gray);
}

/* Error state */
input.error {
  border-color: var(--dark-primary);
}

/* Success state */
input.success {
  border-color: var(--primary);
}

/* Custom Audio Player Styling */
audio {
  width: 100%;
  height: 50px;
  border-radius: var(--border-radius-3);
}

/* Webkit (Chrome, Safari, newer versions of Opera) */
audio::-webkit-media-controls-panel {
  background-color: var(--light-gray);
  border-radius: var(--border-radius-3);
}

audio::-webkit-media-controls-play-button {
  background-color: var(--primary);
  border-radius: 50%;
  color: var(--white);
}

audio::-webkit-media-controls-play-button:hover {
  background-color: var(--light-primary);
}

audio::-webkit-media-controls-timeline {
  background-color: var(--gray);
  border-radius: 25px;
  margin: 0 10px;
}

audio::-webkit-media-controls-timeline:hover {
  background-color: var(--primary);
}

audio::-webkit-media-controls-volume-slider {
  background-color: var(--gray);
  border-radius: 25px;
  padding: 0 5px;
}

audio::-webkit-media-controls-volume-slider:hover {
  background-color: var(--primary);
}

/* Audio player container - for additional styling */
.audio-player-container {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-primary) 100%);
  padding: 1.25rem;
  border-radius: var(--border-radius-2);
  box-shadow: 0px 0px 1rem var(--focus-shadow);
  margin: 1rem 0;
  width: 100%;
}

/* Table  */

.blog table {
  width: 100% !important;
  margin: 20px auto;
  font-size: 0.875rem;

  td {
    padding: 10px 5px;
  }
}

.blog table tr:first-child th,
.blog table tr:first-child td {
  background: var(--primary);
  color: var(--white);
}

/* Legals Pages  */

.legals {
  font-size: 16px;
  line-height: 1.4;

  h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  ul {
    list-style: disc;
    padding-left: 20px;

    li {
      margin-bottom: 0.5rem;
    }
  }
}

@layer pages {
  .page {
    p {
      margin: 15px 0;
    }

    h1,
    h2 {
      margin-top: 30px;
    }

    .info-frame {
      background: var(--black);
      background-size: cover;
      padding: 30px;
      border-radius: var(--border-radius-2);
      gap: 10px;

      h2 {
        color: var(--white);
        margin: 0;
      }

      p {
        margin: 0;
      }

      .text-xl {
        font-size: 1.5rem;
        font-weight: 700;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

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

    ul,
    ol {
      li {
        margin: 15px;
      }
    }
  }

  .btn.primary {
    padding: 12px 40px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: 0.25s ease-out;

    &:hover {
      transform: scale(1.1);
    }
  }

  .account_page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

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

    .account-hero {
      display: grid;
      grid-template-columns: 1.35fr 1fr;
      gap: 1.25rem;
      padding: 2rem;
      border-radius: var(--border-radius-3);
      background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--light-primary) 55%, transparent) 0%, transparent 40%),
        linear-gradient(135deg, color-mix(in srgb, var(--white) 82%, var(--light-primary) 18%) 0%, var(--white) 100%);
      border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);

      @media screen and (max-width: 991px) {
        grid-template-columns: 1fr;
      }
    }

    .account-hero__content {
      h2 {
        margin: 0.5rem 0 1rem;
        color: var(--black);
        font-size: 2.8rem;

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

      p {
        margin: 0;
        max-width: 58ch;
        color: var(--dark-gray);
        font-size: 1rem;
      }
    }

    .account-hero__stats {
      display: grid;
      gap: 1rem;
      align-content: start;
    }

    .account-stat,
    .account-card {
      border-radius: var(--border-radius-2);
      background: color-mix(in srgb, var(--white) 86%, var(--light-primary) 14%);
      border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
      padding: 1.25rem;
      box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 8%, transparent);
    }

    .account-stat {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;

      .account-stat__label {
        font-size: 0.8rem;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        color: var(--gray);
      }

      strong {
        color: var(--black);
        font-size: 1.5rem;
      }

      p {
        margin: 0;
        color: var(--dark-gray);
        font-size: 0.95rem;
      }
    }

    .account-section-heading {
      h3 {
        color: var(--white);
        margin-top: 0.25rem;
      }
    }

    .account-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;

      @media screen and (max-width: 991px) {
        grid-template-columns: 1fr;
      }
    }

    .account-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;

      h3 {
        color: var(--black);
        margin: 0;
        font-size: 1.8rem;
      }

      p {
        margin: 0;
        color: var(--dark-gray);
        font-size: 0.98rem;
      }

      .btn {
        margin-top: 0.5rem;
        min-width: 0;
        width: fit-content;
      }
    }

    .account-card--primary {
      background: linear-gradient(135deg, var(--light-primary) 0%, var(--white) 100%);
    }

    .account-card--wide {
      grid-column: 1 / -1;
    }

    .account-contact-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;

      .account-contact-item {
        position: relative;
        padding: 0.9rem 1rem;
        border-radius: var(--border-radius-1);
        background: color-mix(in srgb, var(--white) 70%, var(--light-primary) 30%);
        border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
        padding-left: 3.25rem;
        box-shadow: 0 10px 22px color-mix(in srgb, var(--primary) 7%, transparent);
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 0.45rem;
          background: var(--primary);
        }

        &::after {
          content: "";
          position: absolute;
          left: 1rem;
          top: 1rem;
          width: 1.6rem;
          height: 1.6rem;
          border-radius: 50%;
          background: var(--white);
          box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 10%, transparent);
        }

        &--phone {
          background: linear-gradient(
            135deg,
            color-mix(in srgb, var(--white) 78%, var(--light-primary) 22%) 0%,
            var(--white) 100%
          );
        }

        &--phone::before {
          background: var(--primary);
        }

        &--email {
          background: linear-gradient(
            135deg,
            color-mix(in srgb, var(--white) 82%, var(--light-primary) 18%) 0%,
            var(--white) 100%
          );
        }

        &--email::before {
          background: var(--dark-primary);
        }

        span {
          display: block;
          font-size: 0.8rem;
          text-transform: uppercase;
          letter-spacing: 1.2px;
          color: var(--gray);
          margin-bottom: 0.25rem;
        }

        strong {
          color: var(--black);
          font-size: 1.1rem;
          font-weight: 700;
          word-break: break-word;
        }

        em {
          display: block;
          margin-top: 0.25rem;
          font-style: normal;
          color: var(--gray);
          font-size: 0.85rem;
        }
      }
    }

    .account-card__actions {
      margin-top: 0.5rem;

      .btn.invert {
        background: transparent;
        color: var(--primary);
        border: 1.5px solid var(--primary);
      }
    }

    .unsub-container {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
      box-shadow: none;

      h3,
      h2,
      p {
        text-align: left;
      }

      h3,
      h2 {
        color: var(--black);
      }

      h3 {
        font-size: 0.8rem;
        letter-spacing: 1.6px;
        text-transform: uppercase;
      }

      h2 {
        font-size: 2rem;
        margin: 0.25rem 0 0.75rem;
      }

      p {
        color: var(--dark-gray);
      }

      /* form {
        max-width: 100%;
      } */

      .form-actions {
        width: 100%;
      }

      .btn.btn-primary {
        width: 100%;
        max-width: 260px;
      }
    }
  }
}

@layer utilites {
  .background-dark {
    background-color: var(--black);
  }

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

  .background-light {
    background-color: var(--light-gray);
  }

  .intro-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.8em;
    line-height: normal;
  }

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

  .d-flex {
    display: flex;

    .flex-1 {
      flex: 1;
      min-width: 0;
    }
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

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

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

  .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;
  }

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

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

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

  .m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ml-auto {
    margin-left: auto !important;
  }

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

  .md-hide {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      display: none;
    }
  }

  .arrow-right {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
  }

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

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

  .mt-1 {
    margin-top: 1rem;
  }

  .mt-2 {
    margin-top: 1.25rem;
  }

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

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

  .mt-5 {
    margin-top: 3rem;
  }

  .mb-1 {
    margin-bottom: 1rem;
  }

  .mb-2 {
    margin-bottom: 1.25rem;
  }

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

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

  .mb-5 {
    margin-bottom: 3rem;
  }

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

  .pt-1 {
    padding-top: 1rem;
  }

  .pt-2 {
    padding-top: 1.25rem;
  }

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

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

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

  .pb-1 {
    padding-bottom: 1rem;
  }

  .pb-2 {
    padding-bottom: 1.25rem;
  }

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

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

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

  .p-all {
    padding: 3rem;

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

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

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

  .col-4 {
    width: 35%;

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

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

  .col-7 {
    width: 60%;

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

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

  .col-6 {
    width: 50%;

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

  .gap-1 {
    gap: 0.5rem;
  }

  .gap-2 {
    gap: 0.625rem;
  }

  .gap-3 {
    gap: 1rem;
  }

  .gap-20 {
    gap: 20px;
  }

  .gap-30 {
    gap: 30px;
  }

  .gap-50 {
    gap: 50px;
  }

  .gap-100 {
    gap: 100px;

    @media screen and (max-width: 1199px) {
      gap: 50px;
    }
  }

  .w-100 {
    width: 100%;
  }

  .border-bottom {
    border-bottom: 1px solid var(--light-gray);
  }

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

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

  .tablet-column {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      flex-direction: column;
    }
  }

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