@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 {
    text-wrap: balance;
    font-optical-sizing: auto;
    font-style: normal;
  }

  p,
  li {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.6em;
  }

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

@layer base {
  :root {
    --black: #080808;
    --white: #fff;
    --primary: #ff7722;
    --secondary: #111111;
    --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);
    --light-gray: #ececec;
    --gray: #b4b4b4;
    --gray-md: #646464;
    --dark-gray: #26292c;

    --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: "DM Sans", sans-serif;
    font-size: 10px;
    color: var(--black);
    background-color: var(--white);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: 3.6em;
    font-weight: 700;

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

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

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

  h3 {
    font-size: 1.75rem;
    font-weight: 700;

    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }
  h1,
  h2,
  h3 {
    font-family: "Barlow Condensed", sans-serif;
  }
  a {
    color: var(--light-primary);
    text-decoration: none;
  }

  .btn {
    font-weight: 700;
    color: var(--black);
    background-color: var(--primary);
    border-radius: var(--border-radius-1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 4rem;
    line-height: 24px;
    font-size: 1.8em;
    border: none;
    transition: all 0.2s ease-out;
    width: fit-content;
    min-width: 240px;

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

    @media screen and (max-width: 767px) {
      padding: 0.75rem 2rem;
      font-size: 1.4rem;
      min-width: 200px;
    }
  }
  p:empty {
    display: none;
  }
}

@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: border-box;
    width: 100%;
  }

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

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

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

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

  .section {
    padding-block: 4rem;

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

    + .section {
      padding-top: 0;
    }
  }

  .modal-grid {
    display: grid;
    place-items: center;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    height: 100%;

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

@layer components {
  /* Scrolling Contact Ticker */
  .top-ticker {
    background: linear-gradient(90deg, #0f1216 0%, #1b232c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-block: 0.45rem;
    position: relative;
    z-index: 1000;
  }

  .top-ticker__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 2rem;
    flex-wrap: wrap;
  }

  .top-ticker__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f2f6fa;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    letter-spacing: 0.015em;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;

    &:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.42);
      transform: translateY(-1px);
    }

    svg {
      color: var(--primary);
      flex-shrink: 0;
      width: 15px;
      height: 15px;
    }
  }

  @media screen and (max-width: 767px) {
    .top-ticker {
      padding-block: 0.4rem;
    }

    .top-ticker__inner {
      justify-content: flex-start;
      gap: 0.6rem;
    }

    .top-ticker__item {
      font-size: 0.82rem;
      width: 100%;
    }
  }

  .site_header {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 1.4rem;
    align-items: center;
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    width: min(1240px, calc(100% - 2rem));
    margin-inline: auto;
    z-index: 1200;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(8, 8, 8, 0.1);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(8, 8, 8, 0.12);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    transition:
      background 0.35s ease,
      box-shadow 0.35s ease,
      padding 0.35s ease,
      border-color 0.35s ease,
      top 0.35s ease;

    &.scrolled {
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 14px 32px rgba(8, 8, 8, 0.2);
      border-color: rgba(255, 119, 34, 0.35);
      padding-block: 0.65rem;
      top: 0.45rem;
    }

    .logo_premium {
      filter: invert(0.25);
    }

    &.payment {
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      transform: none;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.95) 100%);
      border-bottom: 2px solid rgba(57, 255, 20, 0.15);
      border-radius: 0;
      border-left: none;
      border-right: none;
      backdrop-filter: blur(10px);
      padding: 0.5rem;
    }

    @media screen and (max-width: 767px) {
      padding: 0.8rem 1rem;
      top: 84px;
      width: calc(100% - 1rem);
      left: 0;
      right: 0;

      &.scrolled {
        padding-block: 0.55rem;
        top: 0.35rem;
      }
    }

    .logo_header {
      max-width: 160px;
      width: 100%;
      overflow: hidden;
      position: relative;
      z-index: 11;

      .logo_mobile {
        display: none;
      }

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

        .logo_mobile {
          display: block;
          width: 40px;
        }
      }

      img {
        width: 100%;
        max-width: 110px;
      }
    }

    .site_navigation {
      @media screen and (min-width: 768px) {
        display: flex;
        align-items: center;
        gap: 2rem;

        .nav-close {
          display: none;
        }

        .btn-header-cta {
          display: none;
        }
      }

      @media screen and (max-width: 767px) {
        position: fixed;
        inset: 0;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateY(-100%);
        transition:
          transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.25s ease;
        opacity: 0;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1250;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 5.5rem 1.5rem 2rem;
        height: 90vh;

        &.active {
          transform: translateY(0);
          -webkit-transform: translateY(0);
          opacity: 1;
          pointer-events: auto;
        }

        .nav-close {
          position: absolute;
          top: calc(env(safe-area-inset-top, 0px) + 0.9rem);
          right: 0.95rem;
          width: 42px;
          height: 42px;
          border-radius: 999px;
          border: 1px solid rgba(255, 255, 255, 0.34);
          background: rgba(255, 255, 255, 0.1);
          color: var(--white);
          display: grid;
          place-items: center;
          font-size: 2.3rem;
          line-height: 1;
          cursor: pointer;
        }
      }

      ul {
        display: flex;
        gap: 0.5rem;
        list-style: none;

        li a {
          text-decoration: none;
          font-weight: 600;
          color: rgba(8, 8, 8, 0.72);
          font-size: 1.4rem;
          padding: 0.5rem 1rem;
          border-radius: var(--border-radius-1);
          border: 1px solid transparent;
          transition:
            color 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease;
          display: block;

          &:hover {
            color: var(--black);
            background: rgba(255, 119, 34, 0.12);
            border-color: rgba(255, 119, 34, 0.25);
          }
        }

        @media screen and (max-width: 767px) {
          flex-direction: column;
          align-items: center;
          gap: 0.7rem;

          li a {
            font-size: 1.85rem;
            padding: 0.75rem 1.4rem;
            color: rgba(255, 255, 255, 0.82);

            &:hover {
              color: var(--white);
              background: rgba(255, 255, 255, 0.08);
              border-color: rgba(255, 255, 255, 0.12);
            }
          }
        }
      }
    }

    .header-right {
      position: relative;
      display: flex;
      gap: 0.65rem;
      align-items: center;
      z-index: 1260;

      .logout-trigger {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(8, 8, 8, 0.14);
        background: rgba(255, 255, 255, 0.92);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
        transition:
          background 0.2s ease,
          border-color 0.2s ease,
          transform 0.2s ease;

        img {
          width: 18px;
          height: 18px;
          display: block;
          filter: invert(1);
        }

        &:hover {
          background: rgba(255, 119, 34, 0.16);
          border-color: rgba(255, 119, 34, 0.34);
          transform: translateY(-1px);
        }

        @media screen and (max-width: 767px) {
          position: fixed;
          top: 10px;
          right: 4.2rem;
          z-index: 1301;
        }
      }

      .header-cta-desktop {
        @media screen and (max-width: 767px) {
          display: none;
        }
      }

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 25%;
        padding: 5rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 9;

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

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

        &.active {
          right: 0;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;

          li a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.75);
            border-radius: var(--border-radius-1);
            transition:
              color 0.2s,
              background 0.2s;

            &:hover {
              color: var(--primary);
              background: rgba(57, 255, 20, 0.06);
            }
          }
        }
      }
    }

    .btn-header-cta {
      padding: 0.55rem 1.5rem;
      font-size: 1.3rem;
      min-width: auto;
      border-radius: var(--border-radius-4);
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.03em;
      border: 1px solid rgba(8, 8, 8, 0.1);
      transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

      &:hover {
        background: rgba(255, 119, 34, 0.16);
        color: var(--black);
        border-color: rgba(255, 119, 34, 0.35);
      }
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
      z-index: 1261;
      position: relative;

      span {
        display: block;
        width: 26px;
        height: 2px;
        background-color: var(--black);
        transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;

        &:nth-child(2) {
          width: 18px;
          margin-left: auto;
          background: var(--primary);
        }
      }

      &.active,
      &[aria-expanded="true"] {
        span:first-child {
          transform: translateY(7px) rotate(45deg);
          background: var(--primary);
        }
        span:nth-child(2) {
          opacity: 0;
          transform: scaleX(0);
        }
        span:last-child {
          transform: translateY(-7px) rotate(-45deg);
          background: var(--primary);
        }
      }

      @media screen and (max-width: 767px) {
        display: flex;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(8, 8, 8, 0.15);
        align-items: center;
        justify-content: center;

        &.active,
        &[aria-expanded="true"] {
          position: fixed;
          top: calc(env(safe-area-inset-top, 0px) + 0.9rem);
          right: 0.95rem;
          z-index: 1301;
          background: rgba(8, 8, 8, 0.7);
          border: 1px solid rgba(255, 255, 255, 0.36);
        }
      }

      @media screen and (min-width: 768px) {
        width: auto;
        height: auto;
        border: none;
        border-radius: 0;
        background: transparent;
      }

      @media screen and (max-width: 767px) {
        width: 44px;
        height: 44px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

        &.active,
        &[aria-expanded="true"] {
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);

          span:first-child,
          span:last-child {
            background: var(--white);
          }
        }
      }
    }

    @media screen and (min-width: 768px) {
      .mobile-nav {
        display: none;
      }
    }
  }

  /* Hero Section */

  .page_hero {
    position: relative;
    height: 90dvh;
  }

  .page_hero--home {
    height: auto;
    min-height: clamp(340px, 56vw, 510px);
    background: linear-gradient(180deg, #f58222 0%, #f7b733 100%);
    overflow: hidden;

    .home-hero-shell {
      min-height: clamp(340px, 56vw, 510px);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2.25rem 1.5rem;
      isolation: isolate;
    }

    .home-hero-athlete {
      position: absolute;
      left: 0;
      bottom: 0;
      width: min(38vw, 460px);
      height: 100%;
      z-index: 0;
      pointer-events: none;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left top;
      }
    }

    .home-hero-copy {
      position: relative;
      z-index: 1;
      text-align: center;
      text-transform: uppercase;
      color: #112746;
      text-wrap: balance;
      margin-left: clamp(120px, 15vw, 220px);
    }

    .home-hero-kicker {
      margin: 0;
      font-size: clamp(1.2rem, 2.1vw, 2.1rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: 0.02em;
    }

    .home-hero-title {
      margin: 0.12em 0 0;
      font-size: clamp(2.2rem, 5.2vw, 5.4rem);
      line-height: 0.92;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    @media (max-width: 991px) {
      min-height: 360px;

      .home-hero-shell {
        min-height: 360px;
      }

      .home-hero-athlete {
        width: min(46vw, 330px);
      }

      .home-hero-copy {
        margin-left: clamp(82px, 10vw, 130px);
      }
    }

    @media (max-width: 767px) {
      margin-top: 72px;
      min-height: 300px;

      .home-hero-shell {
        min-height: 300px;
        align-items: flex-end;
        padding: 1.5rem 1rem 1.65rem;
      }

      .home-hero-athlete {
        width: min(52vw, 240px);
      }

      .home-hero-copy {
        margin-left: clamp(58px, 8vw, 92px);
      }

      .home-hero-kicker {
        font-size: clamp(0.98rem, 4.7vw, 1.35rem);
      }

      .home-hero-title {
        font-size: clamp(1.85rem, 9.3vw, 2.95rem);
      }
    }
  }

  .page_hero--login {
    min-height: min(860px, 100dvh);
    height: auto;
    display: flex;
    align-items: center;
    background: #efefec;
    padding-top: clamp(7.5rem, 11vh, 10rem);
    padding-bottom: clamp(2rem, 5vh, 4rem);

    .wrapper {
      width: 100%;
    }

    .login-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: center;
      gap: clamp(1.25rem, 3vw, 3.25rem);
    }

    .login-hero-copy {
      max-width: 540px;
    }

    .login-hero-kicker {
      margin: 0 0 1.2rem;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(8, 8, 8, 0.45);
    }

    .login-hero-title {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.15em;
      text-transform: uppercase;
      font-size: clamp(2.55rem, 6.2vw, 5.25rem);
      line-height: 0.92;
      letter-spacing: -0.03em;
      font-weight: 900;

      span {
        display: block;
      }
    }

    .login-hero-description {
      margin: clamp(1.4rem, 2.5vw, 2rem) 0 0;
      font-size: clamp(1.35rem, 1.8vw, 1.7rem);
      line-height: 1.6;
      color: rgba(8, 8, 8, 0.55);
      max-width: 52ch;
    }

    .login-hero-cta {
      margin-top: clamp(1.25rem, 2.8vw, 2.1rem);
      min-width: auto;
      border-radius: 0;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 1.45rem;
      padding: 1rem 1.8rem;
      gap: 0.45rem;
      box-shadow: 0 8px 24px rgba(255, 119, 34, 0.28);

      span {
        font-size: 1.15em;
      }
    }

    .login-hero-visual {
      img {
        width: min(100%, 640px);
        max-inline-size: none;
        object-fit: contain;
        object-position: center bottom;
        transform: translateY(6%);
      }
    }

    @media (max-width: 991px) {
      min-height: auto;

      .login-hero-grid {
        grid-template-columns: 1fr;
      }

      .login-hero-copy {
        max-width: none;
      }

      .login-hero-visual {
        min-height: clamp(360px, 68vw, 520px);
      }
    }

    @media (max-width: 767px) {
      padding-top: 7rem;
      padding-bottom: 2rem;

      .login-hero-kicker {
        letter-spacing: 0.16em;
        margin-bottom: 0.95rem;
      }

      .login-hero-title {
        font-size: clamp(2.2rem, 12vw, 3.9rem);
      }

      .login-hero-description {
        font-size: 1.35rem;
      }

      .login-hero-visual {
        border-radius: 1.8rem;
      }

      .login-hero-cta {
        font-size: 1.2rem;
        padding: 0.9rem 1.3rem;
      }
    }
  }

  .login-highlight-strip {
    margin-top: clamp(0.6rem, 1.2vw, 1rem);

    .login-discipline-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: rgba(255, 255, 255, 0.1);
    }

    .login-discipline-card {
      position: relative;
      min-height: clamp(150px, 18vw, 205px);
      overflow: hidden;
      isolation: isolate;

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.72) 100%);
        z-index: 1;
      }

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

    .login-discipline-card__overlay {
      position: absolute;
      left: 1.3rem;
      right: 1.3rem;
      bottom: 1.2rem;
      z-index: 2;

      h3 {
        margin: 0;
        color: var(--white);
        font-size: clamp(1.55rem, 2vw, 2.2rem);
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.02em;
      }

      p {
        margin: 0.35rem 0 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.07em;
      }
    }

    .login-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      background: #0b0c10;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .login-stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 0.35rem;
      min-height: clamp(74px, 8vw, 94px);
      padding: 0.75rem 1rem;

      + .login-stat-item {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
      }

      strong {
        color: var(--primary);
        font-size: clamp(1.9rem, 2.6vw, 2.9rem);
        line-height: 1;
        font-weight: 800;
      }

      span {
        color: rgba(255, 255, 255, 0.56);
        text-transform: uppercase;
        font-size: 0.88rem;
        letter-spacing: 0.12em;
        font-weight: 600;
      }
    }

    @media (max-width: 991px) {
      .login-discipline-grid,
      .login-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .login-stat-item {
        &:nth-child(odd) {
          border-left: none;
        }

        &:nth-child(n + 3) {
          border-top: 1px solid rgba(255, 255, 255, 0.16);
        }
      }
    }

    @media (max-width: 767px) {
      .login-discipline-grid,
      .login-stats-grid {
        grid-template-columns: 1fr;
      }

      .login-discipline-card {
        min-height: 180px;
      }

      .login-stat-item {
        border-left: none;

        + .login-stat-item {
          border-left: none;
          border-top: 1px solid rgba(255, 255, 255, 0.16);
        }
      }
    }
  }

  .login-why-strip {
    background: #f2f2f0;
    padding-block: clamp(2rem, 6vw, 5rem);

    .login-why-grid {
      display: grid;
      grid-template-columns: minmax(140px, 0.8fr) minmax(0, 4fr);
      gap: clamp(1.5rem, 3vw, 4rem);
      align-items: start;
    }

    .login-why-kicker {
      margin: 0;
      color: rgba(8, 8, 8, 0.46);
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;

      &::after {
        content: "";
        display: block;
        width: 2.1rem;
        height: 2px;
        margin-top: 0.7rem;
        background: var(--primary);
      }
    }

    .login-why-text {
      margin: 0;
      color: var(--black);
      text-transform: uppercase;
      font-size: 56px;
      letter-spacing: -0.025em;
      line-height: 1.15;
      text-wrap: pretty;
    }

    @media (max-width: 767px) {
      .login-why-grid {
        grid-template-columns: 1fr;
      }

      .login-why-text {
        max-width: none;
      }
    }
  }

  .login-benefits-showcase {
    background: #f2f2f0;
    padding-top: clamp(2rem, 3.8vw, 4.5rem);

    .login-benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .login-benefit-card {
      background: var(--white);
      border: 1px solid rgba(8, 8, 8, 0.1);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .login-benefit-media {
      position: relative;
      min-height: clamp(120px, 12vw, 150px);

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

    .login-benefit-index {
      position: absolute;
      top: 0.5rem;
      left: 0.5rem;
      background: var(--primary);
      color: var(--black);
      font-weight: 800;
      font-size: 1rem;
      line-height: 1;
      padding: 0.4rem 0.5rem;
      letter-spacing: 0.08em;
    }

    .login-benefit-content {
      padding: 1rem 1.1rem 1.2rem;

      h3 {
        margin: 0;
        font-size: clamp(1.4rem, 1.75vw, 1.9rem);
        text-transform: uppercase;
        line-height: 1.15;
      }

      p {
        margin: 0.65rem 0 0;
        color: var(--gray-md);
        font-size: 1.18rem;
        line-height: 1.55;
      }

      a {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        margin-top: 0.85rem;
        color: var(--black);
        font-size: 1.05rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
      }
    }

    @media (max-width: 991px) {
      .login-benefits-grid {
        grid-template-columns: 1fr;
      }
    }
  }

  .login-action-gallery {
    background: #f2f2f0;
    padding-top: 0;

    .login-action-kicker {
      margin: 0;
      color: rgba(8, 8, 8, 0.44);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.72rem;

      &::after {
        content: "";
        display: block;
        width: 2.1rem;
        height: 2px;
        margin-top: 0.65rem;
        background: var(--primary);
      }
    }

    .login-action-title {
      margin: 0.8rem 0 1.35rem;
      text-transform: uppercase;
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .login-action-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));

      img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        filter: saturate(0.9);
      }
    }

    @media (max-width: 991px) {
      .login-action-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 767px) {
      .login-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
  }

  .login-break-limits {
    background: var(--primary);
    padding-block: clamp(2rem, 4.2vw, 3.5rem);

    .login-break-limits__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
      gap: clamp(1rem, 3vw, 2.4rem);
      align-items: center;
    }

    h2 {
      margin: 0;
      text-transform: uppercase;
      font-size: clamp(2.15rem, 4vw, 4.2rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
    }

    .login-break-limits__copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;

      p {
        margin: 0;
        color: rgba(8, 8, 8, 0.72);
        font-size: 1.3rem;
        line-height: 1.45;
        max-width: 52ch;
      }

      .btn {
        background: var(--black);
        color: var(--white);
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 1.2rem;
        min-width: auto;
        padding: 0.9rem 1.4rem;
      }
    }

    @media (max-width: 991px) {
      .login-break-limits__grid {
        grid-template-columns: 1fr;
      }

      h2 {
        max-width: none;
      }
    }
  }

  /* Dark gradient overlay */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(8, 8, 8, 0.85) 0%,
      rgba(8, 8, 8, 0.55) 40%,
      rgba(8, 8, 8, 0.25) 70%,
      transparent 100%
    );
    z-index: 1;
  }

  /* Hero Payment  */

  .hero_payment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.04) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
  }

  /* Pricing Section */
  .pricing_section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;

    .section_header {
      text-align: center;
      margin-bottom: 60px;

      h2 {
        font-size: clamp(28px, 5vw, 35px);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: -1px;
        background: linear-gradient(135deg, var(--black) 0%, #333 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-block: 12px;
      }

      .section_subtitle {
        font-size: 16px;
        color: var(--gray-md);
        max-width: 500px;
        margin: 0 auto;
        font-weight: 400;
        line-height: 1.6;
      }
    }

    .pricing_container {
      display: flex;
      justify-content: center;

      .pricing_card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        border: 2px solid rgba(57, 255, 20, 0.25);
        border-radius: 20px;
        padding: 50px 40px;
        width: 100%;
        max-width: 480px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        &::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 2px;
          background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        &:hover {
          border-color: rgba(57, 255, 20, 0.5);
          box-shadow: 0 20px 60px rgba(57, 255, 20, 0.15);
          transform: translateY(-5px);

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

        .pricing_badge {
          position: absolute;
          top: 20px;
          right: 20px;
          background: rgba(57, 255, 20, 0.1);
          color: var(--primary);
          padding: 6px 14px;
          border-radius: 50px;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 0.5px;
          transition: all 0.3s ease;
          border: 1px solid var(--primary);

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

        .card_header {
          margin-bottom: 30px;
          padding-bottom: 30px;
          border-bottom: 2px solid rgba(57, 255, 20, 0.15);

          h2 {
            font-size: 24px;
            font-weight: 600;
            margin: 0 0 20px 0;
            color: var(--black);
          }

          .price_display {
            display: flex;
            align-items: flex-start;
            gap: 10px;

            .currency {
              font-size: 14px;
              color: var(--gray-md);
              font-weight: 500;
              margin-top: 4px;
            }

            .amount {
              font-size: 48px;
              font-weight: 700;
              color: var(--primary);
              line-height: 1;
            }
          }
        }

        .plan_selector {
          display: flex;
          flex-direction: column;
          gap: 10px;
          margin-bottom: 24px;

          .plan_option {
            display: grid;
            grid-template-columns: 18px 1fr auto;
            gap: 10px;
            align-items: center;
            border: 1px solid rgba(57, 255, 20, 0.25);
            border-radius: 12px;
            padding: 10px 12px;
            cursor: pointer;
            transition: all 0.25s ease;

            &:hover {
              border-color: rgba(57, 255, 20, 0.6);
              background: rgba(57, 255, 20, 0.06);
            }

            input[type="radio"] {
              width: 16px;
              height: 16px;
              accent-color: var(--primary);
              margin: 0;
            }

            .plan_option_text {
              font-size: 14px;
              color: var(--black);
              font-weight: 600;
              line-height: 1.4;
            }

            .plan_option_price {
              font-size: 14px;
              color: var(--primary);
              font-weight: 700;
              line-height: 1.4;
            }

            &.is_selected {
              border-color: var(--primary);
              background: rgba(57, 255, 20, 0.12);
              box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.18);
            }
          }
        }

        .billing_info {
          font-size: 14px;
          color: var(--gray-md);
          margin-bottom: 30px;
          font-weight: 500;
        }

        .benefits_list {
          display: flex;
          flex-direction: column;
          gap: 16px;
          margin-bottom: 30px;
          padding-bottom: 30px;
          border-bottom: 2px solid rgba(57, 255, 20, 0.15);

          .benefit_item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--black);
            font-size: 15px;
            font-weight: 500;

            .benefit_icon {
              width: 20px;
              height: 20px;
              color: var(--primary);
              flex-shrink: 0;
            }

            span {
              line-height: 1.4;
            }
          }
        }

        .pricing_terms {
          p {
            font-size: 13px;
            color: var(--gray-md);
            line-height: 1.6;
            margin: 0;

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

  /* Agreement Section */
  .agreement_section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;

    #getNow {
      .form_container {
        max-width: 550px;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
        border: 2px solid rgba(57, 255, 20, 0.25);
        border-radius: 20px;
        padding: 45px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

        @media (max-width: 767px) {
          padding: 30px 20px;
          margin: 0 20px;
        }

        .form_title {
          font-size: 28px;
          font-weight: 700;
          text-align: center;
          margin-bottom: 35px;
          color: var(--black);
        }

        .agreements {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin-bottom: 35px;

          .checkbox-group {
            &.modern_checkbox {
              position: relative;

              input[type="checkbox"] {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                width: 100%;
                height: 100%;
                margin: 0;
                top: 0;
                left: 0;
                z-index: 1;

                &:checked + label {
                  .checkbox_custom {
                    background: var(--primary);
                    border-color: var(--primary);
                    box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);

                    &::after {
                      opacity: 1;
                      transform: scale(1);
                    }
                  }
                }

                &:focus + label {
                  .checkbox_custom {
                    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.2);
                  }
                }
              }

              label {
                display: flex;
                align-items: flex-start;
                gap: 14px;
                cursor: pointer;
                user-select: none;
                padding: 15px;
                border-radius: 12px;
                transition: all 0.3s ease;
                position: relative;
                z-index: 0;

                &:hover {
                  background: rgba(57, 255, 20, 0.08);

                  .checkbox_custom {
                    border-color: var(--primary);
                  }
                }

                .checkbox_custom {
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  width: 20px;
                  height: 20px;
                  min-width: 20px;
                  min-height: 20px;
                  border: 2px solid rgba(57, 255, 20, 0.4);
                  border-radius: 6px;
                  background: white;
                  transition: all 0.3s ease;
                  margin-top: 2px;

                  &::after {
                    content: "✓";
                    color: var(--black);
                    font-size: 14px;
                    font-weight: 700;
                    opacity: 0;
                    transform: scale(0.5);
                    transition: all 0.3s ease;
                  }
                }

                .label_text {
                  font-size: 14px;
                  color: var(--gray-md);
                  line-height: 1.6;
                  font-weight: 500;

                  a {
                    color: var(--primary);
                    text-decoration: none;
                    font-weight: 600;
                    transition: all 0.3s ease;

                    &:hover {
                      text-decoration: underline;
                      color: var(--dark-primary);
                    }
                  }

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

        .payment_submit_btn {
          width: 100%;
          padding: 16px 24px;
          background: linear-gradient(135deg, var(--primary) 0%, #32cc0d 100%);
          border: none;
          border-radius: 12px;
          color: var(--black);
          font-size: 16px;
          font-weight: 700;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          position: relative;
          overflow: hidden;
          letter-spacing: 0.5px;

          &::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
          }

          .btn_text {
            position: relative;
            z-index: 1;
          }

          .btn_icon {
            position: relative;
            z-index: 1;
            font-size: 18px;
            transition: transform 0.3s ease;
          }

          &:hover:not(:disabled) {
            box-shadow: 0 15px 40px rgba(57, 255, 20, 0.3);
            transform: translateY(-2px);

            &::before {
              left: 100%;
            }

            .btn_icon {
              transform: translateX(4px);
            }
          }

          &:active:not(:disabled) {
            transform: translateY(0);
          }

          &:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
          }
        }

        .security_notice {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          margin-top: 20px;
          font-size: 13px;
          color: var(--gray-md);
          font-weight: 500;

          .security_icon {
            width: 16px;
            height: 16px;
            color: var(--primary);
            flex-shrink: 0;
          }
        }
      }
    }
  }

  @media (max-width: 767px) {
    .pricing_section {
      padding: 60px 0 40px;

      .section_header {
        margin-bottom: 40px;

        h1 {
          font-size: 28px;
          margin-bottom: 10px;
        }

        .section_subtitle {
          font-size: 14px;
        }
      }

      .pricing_container {
        .pricing_card {
          padding: 35px 25px;

          .plan_selector {
            margin-bottom: 20px;

            .plan_option {
              padding: 10px;
              gap: 8px;

              .plan_option_text,
              .plan_option_price {
                font-size: 13px;
              }
            }
          }

          .card_header {
            padding-bottom: 20px;

            h2 {
              font-size: 20px;
              margin-bottom: 15px;
            }

            .price_display {
              .amount {
                font-size: 36px;
              }
            }
          }

          .benefits_list {
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 20px;

            .benefit_item {
              font-size: 14px;
              gap: 10px;

              .benefit_icon {
                width: 18px;
                height: 18px;
              }
            }
          }
        }
      }
    }
  }
}

.intro-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  text-transform: uppercase;

  @media (max-width: 767px) {
    font-size: 1.75rem;
  }
}
/* Cards on login page  */
.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;

  > .text-center {
    flex: 0 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    min-width: 260px;
  }

  > .price-buttons {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .feature {
    position: relative;
    border: 1px solid rgba(8, 8, 8, 0.08);
    border-radius: var(--border-radius-3);
    padding: 2.5rem 1.5rem;
    height: 100%;
    min-height: 420px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:
      radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 8%, transparent), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
    box-shadow: 0 20px 40px rgba(8, 8, 8, 0.06);
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      inset: 1rem;
      border: 1px solid rgba(8, 8, 8, 0.05);
      border-radius: calc(var(--border-radius-3) - 0.75rem);
      pointer-events: none;
    }

    img {
      margin: 0 auto 1.25rem;
      width: 60px;
      height: 60px;
      padding: 0.8rem;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(0, 217, 255, 0.16));
    }

    .feature-name {
      font-size: 1.6rem;
      line-height: 1.25;
      margin-bottom: 0.9rem;
    }

    .text {
      color: var(--gray-md);
      font-size: 1.6em;
      line-height: 1.65;
    }
  }

  @media (max-width: 991px) {
    > .text-center {
      flex: 0 1 calc((100% - 20px) / 2);
      max-width: calc((100% - 20px) / 2);
    }
  }

  @media (max-width: 767px) {
    > .text-center {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
}

.testimonials-shell {
  position: relative;
  padding: 3rem clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--border-radius-3);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 34%),
    radial-gradient(circle at bottom left, color-mix(in srgb, var(--primary) 12%, transparent), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  color: var(--black);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 22px 50px rgba(8, 8, 8, 0.06);

  &::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(8, 8, 8, 0.06);
    border-radius: calc(var(--border-radius-3) - 0.75rem);
    pointer-events: none;
    z-index: -1;
  }

  .intro-title {
    margin-bottom: 1rem;
  }

  .intro-text {
    color: var(--gray-md);
  }
}

.testimonials-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background-color: rgba(57, 255, 20, 0.14);
  border: 1px solid rgba(57, 255, 20, 0.35);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

  @media (max-width: 991px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 100%;
  padding: 2rem 1.5rem;
  text-align: left;
  border-radius: var(--border-radius-2);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 18px 35px rgba(8, 8, 8, 0.08);

  h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.25rem;
  }

  p {
    margin: 0;
  }
}

.testimonial-card--featured {
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.12), rgba(255, 255, 255, 0.96));
  border-color: rgba(57, 255, 20, 0.28);
  transform: translateY(-0.5rem);

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

.testimonial-card__rating {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.testimonial-card__quote {
  font-size: 1.8em;
  line-height: 1.7;
  color: rgba(8, 8, 8, 0.84);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;

  p {
    font-size: 1.4em;
    color: var(--gray-md);
    line-height: 1.4;
  }
}

.testimonial-card__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;

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

.offer-copy,
.offer-card {
  border-radius: var(--border-radius-3);
  border: 1px solid rgba(8, 8, 8, 0.08);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 8%, transparent), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 20px 45px rgba(8, 8, 8, 0.06);
}

.offer-copy {
  padding: 2.5rem clamp(1.25rem, 3vw, 2.5rem);

  .intro-title {
    text-align: left;
    margin-bottom: 1rem;
  }
}

.offer-text {
  margin: 0;
  max-width: 720px;
  color: var(--gray-md);
  text-align: left;
}

.offer-benefits {
  display: grid;
  gap: 1rem;
}

.offer-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: var(--border-radius-2);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 8, 8, 0.06);

  h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--black);
  }

  p {
    font-size: 1.55em;
    color: var(--gray-md);
    line-height: 1.6;
    margin: 0;
  }
}

.offer-benefit__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--secondary) 55%, white));
  flex-shrink: 0;
}

.offer-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;

  h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
  }

  .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.offer-card__label {
  margin-bottom: 0.75rem;
  color: var(--gray-md);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-card__list {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 0;

  li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 1.6em;
    color: rgba(8, 8, 8, 0.82);

    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 0.65rem;
      height: 0.65rem;
      border-radius: 50%;
      background-color: var(--primary);
    }
  }
}

.offer-card__note {
  margin-top: 1rem;
  font-size: 1.4em;
  color: var(--gray-md);
  text-align: center;
}

/* Fix for category cards layout */

.category_card:hover img.cardsImage {
  transform: scale(1.05);
}

.cardsTitle {
  position: absolute;
  bottom: 20px;
  left: 15px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Category Cards */

.category_card {
  width: 220px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--border-radius-1);
  position: relative;
  transition: transform 0.3s ease-in-out;
  margin: 0;

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

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

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

.category_card:hover img.cardsImage {
  transform: scale(1.05);
}

.cardsTitle {
  position: absolute;
  width: 80%;
  bottom: 20px;
  left: 15px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.app-section,
#app-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
}

/* Categorie Pills  */

.features-bar {
  margin: 30px 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: "Poppins", sans-serif;
    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;
}

.rating > img {
  width: 15px;
}

.rating > 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: #2c2c2c;
  border-radius: 10px;
}

/* Section Picker */

.section-switcher-wrap {
  padding-block: 1.25rem 2.5rem;
}

.section-switcher-wrap--home {
  padding-block: 0;
  background: #0a0a0a;
}

.section_picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--black) 90%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  @media screen and (max-width: 767px) {
    gap: 0.5rem;
    padding: 0.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  @media screen and (max-width: 767px) {
    &::-webkit-scrollbar {
      display: none;
    }
  }

  button {
    flex: 1 1 0;
    min-width: 180px;
    padding: 0.95rem 1.25rem;
    border: 1px solid transparent;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    border-radius: 999px;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.2s ease-out;
    scroll-snap-align: center;

    &:hover {
      color: var(--white);
      border-color: color-mix(in srgb, var(--white) 25%, transparent);
      background: color-mix(in srgb, var(--white) 10%, transparent);
      transform: translateY(-1px);
    }

    &.active {
      color: var(--black);
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 8px 20px rgba(57, 255, 20, 0.25);
      cursor: default;
      transform: none !important;
    }

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

.home-section-picker {
  width: 100%;
  max-width: none;
  border-radius: 0;
  padding: 0;
  gap: 0;
  border: none;
  box-shadow: none;
  background: transparent;

  .home-picker-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: clamp(160px, 19vw, 210px);
    padding: 0;
    border-radius: 0;
    border: none;
    background: #0c0f14;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    transition:
      transform 0.2s ease,
      filter 0.2s ease,
      box-shadow 0.2s ease;

    + .home-picker-card {
      border-left: 2px solid rgba(245, 130, 34, 0.88);
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 7, 9, 0.1) 10%, rgba(6, 7, 9, 0.92) 82%);
      z-index: 1;
    }

    &::after {
      content: "";
      position: absolute;
      top: 0.65rem;
      right: 0.65rem;
      z-index: 3;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    &:hover {
      transform: none;
    }

    &:focus-visible {
      outline: 2px solid #f7b733;
      outline-offset: -2px;
    }

    &.active {
      background: #11151d;
      box-shadow:
        inset 0 0 0 2px rgba(245, 130, 34, 0.95),
        inset 0 -4px 0 #f58222,
        0 0 0 1px rgba(245, 130, 34, 0.35);
      color: var(--white);
      transform: translateY(-2px);

      &::after {
        content: "ACTIVE";
        opacity: 1;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #0a0a0a;
        background: #f7b733;
        border-radius: 999px;
        padding: 0.32rem 0.55rem;
      }
    }

    &.inactive {
      filter: saturate(0.65) brightness(0.82);

      .home-picker-media img {
        transform: scale(1.02);
      }

      .home-picker-copy strong {
        color: #f4c59e;
      }
    }
  }

  .home-picker-media {
    position: absolute;
    inset: 0;
    z-index: 0;

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

  .home-picker-copy {
    position: relative;
    z-index: 2;
    padding: 1rem 1.05rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;

    strong {
      color: #f58222;
      text-transform: uppercase;
      font-size: clamp(1rem, 1.2vw, 1.22rem);
      line-height: 1;
      letter-spacing: 0.03em;
      font-weight: 800;
    }

    small {
      color: rgba(255, 255, 255, 0.82);
      text-transform: none;
      line-height: 1.4;
      font-size: clamp(0.76rem, 0.9vw, 0.88rem);
      letter-spacing: 0;
      white-space: normal;
    }
  }

  @media screen and (max-width: 991px) {
    .home-picker-card {
      min-height: 180px;
    }
  }

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

    .home-picker-card {
      min-height: 156px;
      border-left: none;
      transform: none;

      + .home-picker-card {
        border-left: none;
        border-top: 2px solid rgba(245, 130, 34, 0.88);
      }
    }

    .home-picker-copy {
      padding: 0.9rem 0.9rem 0.95rem;
    }
  }
}

/* Support pages  */

.title-section {
  padding-block: 6.25rem 2.5rem;
  background: var(--dark-gray);

  h1 {
    color: var(--white);
  }
}

.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;
    color: var(--gray);
  }

  input,
  textarea {
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius-2);
    background: var(--dark-gray);
    font-size: 1rem;
    color: var(--white);
  }

  .btn {
    width: 100%;
  }
}

/* Single Items  */
.single-item,
.single-movie {
  background: var(--light-gray);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-2);
  margin-top: 40px;
  h1 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
    text-wrap: inherit;

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

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

  .img-radial {
    width: 100%;
    max-width: 240px;
    height: 100%;
    max-height: 240px;
    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: 150px;
      max-height: 150px;
      margin: 0 auto;
    }

    &.large {
      max-width: 100%;

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

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

  video {
    max-height: 450px;
  }

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

    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 {
  .single-item,
  .single-movie {
    .img-radial {
      max-width: 100%;
      min-height: 300px;
      img {
        width: 100%;
        object-fit: cover;
      }
    }
  }
}

.single-movie .single-item-info {
  width: 100%;
}

.unsub-container {
  border: 3px solid var(--dark-gray);
  padding: 3rem 1%;
  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;

    .form-group {
      padding: 0;
    }

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

    .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: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert p {
  margin: 0;
}

/* Support page */

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

  h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin: 0;

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

  h2 {
    font-size: 3rem;
    font-weight: 200;
    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(--dark-gray);
    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;

      input,
      textarea {
        padding: 15px;
        background: var(--dark-gray) !important;
        color: var(--white);
        border: none !important;
        border-radius: 25px;
        font-family: "Inrter", sans-serif;

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

  .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 */
        }
      }
    }
  }
}

.support-test-page {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 34%),
    radial-gradient(circle at bottom left, color-mix(in srgb, var(--primary) 12%, transparent), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  .support-test-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;

    @media (max-width: 991px) {
      grid-template-columns: 1fr;
    }
  }
  .support-container {
    background: none;
    h2 {
      color: var(--dark-gray) !important;
    }
  }
  .support-test-intro {
    color: var(--black);
    border-radius: 25px;
    padding: 2.25rem;

    h2 {
      margin: 0.5rem 0 1rem;
      max-width: 16ch;
    }

    p {
      color: var(--gray);
      margin: 0;
      max-width: 52ch;
      font-size: 1.05rem;
      line-height: 1.6;
    }
  }

  .support-test-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;

    .btn {
      min-width: 180px;
      text-decoration: none;
    }

    .btn.ghost {
      background: transparent;
      color: var(--secondary);
      border: 1px solid var(--secondary);
    }
  }

  .support-test-channels {
    display: grid;
    gap: 1rem;
  }

  .support-test-channel-card {
    color: var(--black);
    border-radius: 25px;
    padding: 1.5rem;

    h4 {
      margin: 0 0 0.75rem;
      color: var(--secondary);
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .support-number {
      font-size: clamp(1.4rem, 3.5vw, 2.4rem);
      line-height: 1.1;
      margin-bottom: 0.4rem;
      white-space: normal;
      color: var(--secondary);
    }

    .support-mail {
      color: var(--secondary);
      font-size: 1.2rem;
      line-height: 1.25;
      text-decoration: none;
      overflow-wrap: anywhere;
      display: inline-block;
      margin-bottom: 0.4rem;
    }

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

  .support-test-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: start;

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

  .support-test-form-panel {
    padding: 2rem;
    color: var(--black);

    h3 {
      margin-bottom: 0.6rem;
    }

    h2 {
      margin-top: 0;
      margin-bottom: 1.25rem;
      font-size: 2rem;
      line-height: 1.2;
    }

    .contact_form .btn {
      width: 100%;
    }

    .alert {
      margin: 1rem 0 0;
    }
  }

  .support-test-copy-panel {
    padding: 2rem;
    text-align: left;

    h3 {
      margin-bottom: 1rem;
    }

    h2,
    h4,
    h5,
    h6 {
      color: var(--white);
      margin: 0 0 0.75rem;
      line-height: 1.3;
      font-size: 1.45rem;
    }

    p,
    li {
      color: var(--gray);
      margin: 0 0 1rem;
      font-size: 1rem;
      line-height: 1.6;
    }

    ul,
    ol {
      margin: 0 0 1rem;
      padding-left: 1.25rem;
      list-style: disc;
    }

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

  .support-test-unsub-section {
    .unsub-container {
      border-color: rgba(0, 217, 255, 0.35);
    }
  }
}

/* Footer  */

.site_footer {
  position: relative;
  padding: 0;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 8% 8%, rgba(255, 119, 34, 0.18), transparent 34%),
      radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.08), transparent 28%);
    pointer-events: none;
  }

  .wrapper {
    position: relative;
    z-index: 1;
  }
}

.footer__accent-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), #ffd2ad, var(--primary), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(0, 1.05fr);
  gap: 1rem;
  padding: 2.4rem 0 1.4rem;
  align-items: stretch;

  > * {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 1.1rem;
    padding: 1.3rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  &.payment-footer {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.footer__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 119, 34, 0.22));
}

.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.84rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  padding: 0.5rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.footer__contact-item:hover {
  color: var(--white);
  border-color: rgba(255, 119, 34, 0.38);
  background: rgba(255, 119, 34, 0.12);
}

.footer__contact-item svg {
  flex-shrink: 0;
  stroke: var(--primary);
  opacity: 1;
}

.footer__heading {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0.9rem;
  position: relative;

  &::after {
    content: "";
    display: block;
    width: 2.2rem;
    height: 2px;
    margin-top: 0.55rem;
    background: var(--primary);
  }
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.86rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease,
    text-decoration-color 0.25s ease;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
  text-decoration-color: rgba(255, 119, 34, 0.7);
}

.footer__disclaimer {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.79rem;
  line-height: 1.6;
  margin: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.2rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  margin-top: 0.2rem;
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer__payments img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.78;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  padding: 0.4rem 0.55rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__payments img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

@media screen and (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;

    &.payment-footer {
      grid-template-columns: 1fr;
    }
  }

  .footer__legal {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.8rem 0 1rem;

    > * {
      padding: 1rem;
    }
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .footer__payments img {
    height: 24px;
  }
}

.backToTopBtn {
  bottom: 20px;
  left: 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;
}

/* Modals  */
.spinner {
  border: 4px solid var(--white);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.otp-modal,
.login-modal,
.unsub-modal,
.sign-up-modal {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 119, 34, 0.24), transparent 42%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.08), transparent 40%), rgba(5, 6, 8, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 2rem;

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

  .close {
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    line-height: 1;
    background: rgba(8, 8, 8, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(8, 8, 8, 0.28);
    transition:
      transform 0.2s ease,
      background-color 0.2s ease,
      border-color 0.2s ease;

    &:hover {
      transform: scale(1.06);
      background-color: var(--primary);
      border-color: rgba(8, 8, 8, 0.2);
    }

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

  .modal-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .modal-form {
    width: 100%;
  }

  form {
    width: 100%;

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;

      label {
        font-size: 0.8rem;
        display: inline;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.5;
      }

      input[type="checkbox"] {
        accent-color: var(--primary);
        min-height: auto !important;
        margin-top: 0.3rem;
        flex-shrink: 0;
      }
    }

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

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

    input {
      padding: 0.95rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 0.9rem;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      min-height: 56px;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;

      &:focus-visible {
        outline: none;
        border-color: rgba(255, 119, 34, 0.65);
        box-shadow: 0 0 0 4px rgba(255, 119, 34, 0.24);
        background: rgba(255, 255, 255, 0.14);
      }

      &::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
    }

    .btn {
      width: 100%;
      margin-top: 0.75rem;
      padding: 0.95rem;
      min-width: 0;
      border-radius: 0.9rem;
      font-size: 1.35em;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--primary) 0%, #ffa94b 100%);
      box-shadow: 0 14px 30px rgba(255, 119, 34, 0.34);

      &:hover {
        background: linear-gradient(135deg, #ff8f43 0%, #ffbe67 100%);
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      padding: 2.7rem clamp(1.25rem, 4vw, 2.4rem) 1.8rem;
      background:
        radial-gradient(circle at top right, rgba(255, 119, 34, 0.24), transparent 36%),
        linear-gradient(170deg, #101318 0%, #181d24 100%);
      border-radius: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
      position: relative;
      overflow: hidden;

      &::before {
        content: "";
        position: absolute;
        inset: 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        pointer-events: none;
      }

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        border-top: 4px solid var(--primary);
        border-radius: 1.5rem 1.5rem 0 0;
        pointer-events: none;
      }

      > * {
        position: relative;
        z-index: 1;
      }

      label {
        color: rgba(255, 255, 255, 0.78);
        font-weight: 400;
        font-size: 0.75rem;
      }

      p {
        font-size: 1.1em;
        text-align: center;
        color: rgba(255, 255, 255, 0.66);
      }

      a {
        color: var(--primary);
        font-weight: 700;
      }

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

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

  h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    margin: 0 0 0.5rem;
    color: var(--white);

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

  .error {
    color: #ffb4a8;
    min-height: 1.5em;
  }

  .modal-content {
    background: transparent;
    border-radius: var(--border-radius-3);
    width: min(100%, 520px);
    overflow: visible;
    max-inline-size: 520px;
    position: relative;

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

    .form-group input {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--white);
    }
  }
}

/* Payment modal  */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 119, 34, 0.24), transparent 42%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.08), transparent 40%), rgba(5, 6, 8, 0.86);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

/* Payment Modal Styles */

#paymentModal .modal-content {
  background:
    radial-gradient(circle at top right, rgba(255, 119, 34, 0.24), transparent 36%),
    linear-gradient(170deg, #101318 0%, #181d24 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 34px;
  max-width: 480px;
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);

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

  h2 {
    font-size: 1.9rem;
    margin-bottom: 1.3rem;
    text-align: center;
    color: var(--white);
    font-weight: 700;
  }

  .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

  label {
    display: block;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.9rem;
    font-family: inherit;

    &::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    &:focus {
      border-color: var(--primary);
      background: rgba(255, 255, 255, 0.14);
      box-shadow: 0 0 0 4px rgba(255, 119, 34, 0.24);
      outline: none;
    }
  }

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

    .form-group {
      flex: 1;
    }
  }

  button[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #ffa847 100%);
    border: none;
    border-radius: 999px;
    color: #1c1208;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    letter-spacing: 0.5px;

    &:hover {
      box-shadow: 0 15px 34px rgba(255, 119, 34, 0.32);
      transform: translateY(-2px);
    }

    &:active {
      transform: translateY(0);
    }
  }

  .close {
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 1;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(8, 8, 8, 0.28);

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

    &:hover {
      background-color: var(--primary);
      border-color: rgba(8, 8, 8, 0.2);
      transform: scale(1.06);
    }
  }
}

/* Input placeholder styling */
input::placeholder {
  color: #bbb;
}

/* Error state */
input.error {
  border-color: #dc3545;
}

/* Success state */
input.success {
  border-color: #28a745;
}

/* 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,
  li {
    list-style: none;
    padding-left: 20px;
    font-size: 1rem;
  }
}

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

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

    .info-frame {
      background: var(--dark-gray);
      background-size: cover;
      padding: 40px 30px;
      border-radius: 20px;
      gap: 10px;

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

      p {
        margin-bottom: 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 {
    .text-frame {
      background: var(--dark-gray);
      border: 1px solid rgba(57, 255, 20, 0.2);
      border-radius: var(--border-radius-2);
      padding: 1.75rem;

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

      p {
        color: var(--light-gray);
        margin: 0 0 1rem;

        strong {
          color: var(--white);
        }
      }

      .btn {
        margin-top: 0.5rem;
      }
    }

    .info-frame {
      border: 1px solid rgba(0, 217, 255, 0.25);

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

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

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

      .text-frame,
      .info-frame {
        padding: 1.25rem;
      }
    }
  }
}

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

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

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

  .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-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;
  }
  .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;
  }
  .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: 2.5rem;
  }

  .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: 2.5rem;
  }

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

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

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