:root{--font-sans:'Sora', sans-serif;}


/* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }


/*  */
  .homeuyydgb {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }

    && h1 {
      text-transform: uppercase;
      max-width: 900px;
    }

    && a {
      font-size: 18px;
      padding: 15px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--textColor1);
      width: fit-content;
      color: var(--bodyBG);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        background-color: var(--secondStyleColor);
      }
    }
  }

  .homeuyydgb .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    && .hrr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .hll {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      background-color: rgba(17, 17, 17, 0.4);
      position: relative;
      max-width: 500px;
      border-radius: var(--borderRadius);
      && span:first-child {
        font-size: 144px;
        font-weight: 900;
        color: var(--secondStyleColor);
      }
      && p {
        font-style: italic;
        color: var(--textColor1);
      }

      && .khvaejklj {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .homeuyydgb .container {
      flex-direction: column;
      && .hrr {
        align-items: center;
        && h1 {
          text-align: center;
        }
        && p {
          text-align: center;
        }
      }
      && .hll {
        gap: 10px;
        padding: 10px;
        && span:first-child {
          font-size: 75px;
        }
      }
    }
  }


:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 2px dotted var(--secondStyleColor);
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }


/* ============ Matchday Atmosphere (Layered stack) ============ */
  .fxl-atmo__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fxl-btn {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 800;
    width: fit-content;
    transition: 0.3s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
  }
  .head-about-s {
    color: var(--textColor1);
  }
  .fxl-atmo__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .fxl-atmo__grid {
      grid-template-columns: 1fr;
    }
  }
  .head-about-s--left {
    text-align: left;
  }

  .fxl-bullets {
    margin: 12px 0 20px;
    padding: 0;
    list-style: none;
  }
  .fxl-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--textColor1);
  }
  .fxl-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px rgba(121, 255, 207, 0.18);
  }

  .fxl-atmo__visuals {
    position: relative;
    min-height: 420px;
  }
  .fxl-blob,
  .fxl-blob--b {
    position: absolute;
    inset: auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    z-index: 0;
    background: radial-gradient(
        45% 45% at 60% 40%,
        var(--secondStyleColor),
        transparent 70%
      ),
      radial-gradient(
        45% 45% at 30% 70%,
        var(--secondStyleColor),
        transparent 70%
      ),
      #0f2a1f;
    top: -20px;
    left: -10px;
  }
  .fxl-blob--b {
    width: 280px;
    height: 280px;
    bottom: -30px;
    right: -20px;
    top: auto;
    left: auto;
  }

  .fxl-polaroid {
    position: absolute;
    width: 60%;
    aspect-ratio: 4/3;
    border-radius: var(--borderRadius);
    padding: 8px;
  }
  .fxl-polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
  }
  .fxl-polaroid--a {
    top: 8%;
    left: 10%;
    transform: rotate(-6deg);
  }
  .fxl-polaroid--b {
    top: 28%;
    right: 2%;
    transform: rotate(5deg);
  }
  .fxl-polaroid--c {
    bottom: 0;
    left: 18%;
    transform: rotate(2deg);
  }


/*  */
  .plansTimelineSection {
    color: var(--textColor1);
  }

  .plansIntro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
  }

  .plansKicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
  }

  .plansLead {
    max-width: 420px;
    text-wrap: balance;
    opacity: 0.85;
  }

  .plansTimeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 10px 0;
  }

  .plansTimeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondStyleColor);
    opacity: 0.4;
    transform: translateX(-50%);
  }

  .planStep {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
  }

  .planAxis {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .planDot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2);
  }

  .planCard {
    position: relative;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .planCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .planCard--featured {
    background: var(--secondStyleColor);
    color: var(--textColor2);
    border-color: transparent;
  }

  .planCard--featured .planMeta li {
    border-color: var(--textColor2);
  }

  .planCard--featured .planCta {
    background: var(--textColor2);
    color: var(--secondStyleColor);
    border-color: var(--textColor2);
  }

  .planBadge {
    position: absolute;
    top: 8px;
    right: 18px;
    border-radius: 999px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--textColor2);
  }

  .planTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .planTitle {
    font-weight: 700;
  }

  .planNote {
    margin-top: 6px;
    opacity: 0.8;
  }

  .planPrice {
    font-size: 32px;
    font-weight: 700;
  }

  .planMeta {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }

  .planMeta li {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px dashed var(--secondStyleColor);
  }

  .planCta {
    align-self: flex-start;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .planCta:hover {
    transform: translateY(-2px);
  }

  .plansFooter {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .plansFooterLink {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--textColor1);
    transition: transform 0.2s ease;
  }

  .plansFooterLink:hover {
    transform: translateY(-2px);
  }

  @media (max-width: 900px) {
    .plansIntro {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 800px) {
    .plansTimeline::before {
      left: 10px;
      transform: none;
    }

    .planStep {
      grid-template-columns: 1fr;
      padding-left: 22px;
    }

    .planAxis {
      position: absolute;
      left: 4px;
      top: 32px;
      height: auto;
    }

    .planDot {
      box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
    }

    .planSpacer {
      display: none;
    }
  }


.partners {
    position: relative;
  }

  .partners::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background-color: var(--secondStyleColor);
    opacity: 0.1;
  }

  .partners__container {
    text-align: center;
  }
  .partnersHead {
    margin-bottom: 45px;
  }

  .partners__title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--textColor1);
  }

  .partners__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    padding-bottom: 0;
    gap: 30px;
  }

  .partners__logo-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all linear;
    img {
      height: 50%;
    }
  }

  .partners__logo-wrapper a:hover {
    transform: scale(1.05);
  }

  .partners__logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }
  @media (max-width: 800px) {
    .partners__logo-wrapper {
      flex-direction: column;
    }
    .partners__logo-wrapper a {
      width: 100%;
    }
  }


/*  */
  .absssss {
    position: relative;
    &&::after {
      position: absolute;
      content: "";
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      top: 7%;
      left: -15%;
      z-index: -1;
      opacity: 0.1;
    }
  }

  .absssss .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .abllllllll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    && a {
      padding: 12px 40px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-size: 20px;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-2px);
      }
    }
    && p {
      text-wrap: balance;
    }
  }
  .abrrrrrrrrr {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    &&::before {
      position: absolute;
      content: "";
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      bottom: -15%;
      left: -18%;
      opacity: 0.1;
      z-index: -1;
    }
  }
  .abelrrr {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px;
    background-color: var(--bodyBG);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: var(--borderRadius);

    && .abiiimgw {
      min-width: 140px;
      max-width: 140px;
      border-radius: 50%;
      width: 140px;
      height: 140px;
      && img {
        width: 100%;
        border-radius: inherit;
        height: 100%;
        object-fit: cover;
      }
    }

    && svg {
      fill: var(--secondStyleColor);
    }
    && p {
      max-width: 90%;
    }
  }
  .abelrrr div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    && p:last-child {
      font-style: italic;
    }
  }

  @media (max-width: 800px) {
    .absssss {
      &&::after {
        display: none;
      }
    }
    .absssss .container {
      flex-direction: column;
    }
    .abelrrr {
      flex-direction: column-reverse;
      && .abiiimgw {
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
      }
    }
    .abelrrr div {
      justify-content: center;
      align-items: center;
      && p {
        text-align: center;
      }
    }
    .abrrrrrrrrr {
      &&::before {
        left: -26%;
        bottom: 12%;
      }
    }
    .abllllllll {
      align-items: center;
      && h2,
      p {
        text-align: center;
      }
    }
  }


/*  */
  #features {
    position: relative;
  }
  #features img {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 0.1;
  }
  #features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    && a {
      padding: 15px 60px;
      background-color: var(--secondStyleColor);
      border-radius: var(--borderRadius);
      font-size: 20px;
      color: var(--textColor2);
      transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
      &&:hover {
        padding: 15px 80px;
      }
    }
    && h2 + p {
      text-align: center;
      text-wrap: balance;
    }
  }
  .fcsardjarwi {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  .cdfeeooofwwqr {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 40px;
  }
  .fcoooo {
    padding: 40px;
    color: var(--textColor1);
    background-color: rgba(16, 16, 20, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--secondStyleColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: var(--borderRadius);
    && span {
      font-size: 40px;
      font-weight: 900;
    }
  }

  @media (max-width: 800px) {
    .cdfeeooofwwqr {
      flex-direction: column;
      gap: 20px;
    }
    .fcoooo {
      padding: 20px;
    }
    .fcsardjarwi {
      margin-top: 20px;
      gap: 20px;
    }
  }


.how7__section {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
  }

  .how7__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5;
  }
  .how7__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 50px;
    align-items: start;
  }
  .how7__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .how7__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
    font-weight: 600;
    color: var(--textColor1);
  }
  .how7__intro h2 {
    font-family: "Syne", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0;
    color: var(--textColor1);
  }
  .how7__lead {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.7;
    max-width: 480px;
  }
  .how7__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .how7__meta-card {
    border: 1px solid var(--secondStyleColor);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .how7__meta-card strong {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    color: var(--textColor1);
  }
  .how7__meta-card span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    color: var(--textColor1);
  }

  .how7__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 26px;
    position: relative;
  }
  .how7__steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(var(--secondStyleColor));
  }
  .how7__step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    border: 1px solid var(--secondStyleColor);
    border-radius: 20px;
    padding: 20px 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    animation: how7Rise 0.6s ease both;
    animation-delay: var(--delay);
  }
  .how7__step-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  }
  .how7__step-body h3 {
    margin: 0 0 6px 0;
    font-family: "Syne", sans-serif;
    font-size: 20px;
    color: var(--textColor1);
  }
  .how7__step-body p {
    margin: 0 0 14px 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--textColor1);
    line-height: 1.6;
  }
  .how7__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .how7__chips span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--textColor1);
  }

  @keyframes how7Rise {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .how7__step {
      animation: none;
    }
  }
  @media (max-width: 980px) {
    .how7__layout {
      grid-template-columns: 1fr;
    }
    .how7__meta {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .how7__section {
      padding: 70px 0 90px;
    }
    .how7__meta {
      grid-template-columns: 1fr;
    }
    .how7__step {
      grid-template-columns: 1fr;
    }
    .how7__steps::before {
      display: none;
    }
    .how7__step-badge {
      width: 46px;
      height: 46px;
      border-radius: 12px;
    }
  }


.galeryhead {
    margin-bottom: 45px;
  }
  .galleryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
  }
  .imageContainer {
    width: 390px;
    height: 560px;
    border-radius: var(--borderRadius);
    margin-bottom: 20px;
    img {
      border-radius: inherit;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .galleryItem {
    h3 {
      margin-bottom: 10px;
    }
  }
  @media (max-width: 800px) {
    .galleryGrid {
      display: flex;
      flex-direction: column;
    }
    .imageContainer {
      width: 100%;
      height: 330px;
    }
  }


[data-accordion-element-content] {
    overflow: hidden;
    transition: height 0.5s;
  }

  :root {
    --bgHead: var(--bodyBG);
    --bgHeadHover_active: var(--secondStyleColor);
    --bgText: rgba(255, 255, 255, 0.1);
  }

  .faq h2 {
    text-align: center;
  }
  .card-faq {
    width: 90%;
    margin: 50px auto;
    border-radius: 2px;
    background: transparent;
    margin-top: 40px;
  }

  .faq-article {
    position: relative;
    transition: all 0.3s;
    background-color: transparent;
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -ms-border-radius: 0 0 12px 12px;
    -o-border-radius: 0 0 12px 12px;
    p {
      padding: 10px 20px;
    }
  }

  .faq-article.selected {
    transform: scale(1.1);
    z-index: 2;
    background: var(--bgText);
  }

  .faq-h3 {
    position: relative;
    background: var(--bgHead);
    padding: 20px 75px 20px 20px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    overflow: hidden;
    transition: background 0.3s;
    margin: 10px 0;
    cursor: pointer;
  }

  .faq-h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .selected .faq-h3 {
    cursor: pointer;
    background: var(--bgHeadHover_active);
    color: var(--bgHead);
    border: none;
  }

  .faq-h3:before,
  .faq-h3:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    margin-right: 30px;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s;
  }

  .faq-h3:before {
    transform: rotate(0deg);
    animation: close-line-one-in 0.8s forwards;
  }

  .selected .faq-h3:before {
    animation: close-line-one-out 0.8s forwards;
    background: #000;
  }

  .faq-h3:after {
    transform: rotate(90deg);
    animation: close-line-two-in 0.8s forwards;
  }

  .selected .faq-h3:after {
    background: #000;
    animation: close-line-two-out 0.8s forwards;
  }

  .content {
    opacity: 0;
    transform: translateY(20px);
    transition: all ease-out 0.4s 0.1s;
  }

  .selected .content {
    transform: translateY(0);
    opacity: 1;
  }

  .faq-p {
    padding: 25px 30px 40px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
  }

  @keyframes close-line-one-out {
    0%,
    50% {
      transform: translateX(0);
    }
    75% {
      transform: translateX(50px);
    }
    76% {
      transform: translateX(50px) translateY(50px);
    }
    100% {
      transform: rotate(45deg);
    }
  }

  @keyframes close-line-one-in {
    0%,
    20% {
      transform: rotate(45deg);
    }
    60% {
      transform: translateX(50px) translateY(50px) rotate(45deg);
    }
    61% {
      transform: translateX(50px);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  @keyframes close-line-two-out {
    0%,
    50% {
      transform: rotate(90deg);
    }
    75% {
      transform: translateY(-50px) rotate(90deg);
    }
    76% {
      transform: translateY(-50px) translateX(50px) rotate(90deg);
    }
    100% {
      transform: rotate(135deg);
    }
  }

  @keyframes close-line-two-in {
    0% {
      transform: rotate(135deg);
    }
    50% {
      transform: translateY(-50px) translateX(50px) rotate(135deg);
    }
    51% {
      transform: translateY(-50px) rotate(90deg);
    }
    100% {
      transform: rotate(90deg);
    }
  }

  @media screen and (max-width: 750px) {
    .card-faq {
      width: 90%;
    }
  }


/* ===== FOOTER ===== */

  .footer {
    background: #181818;
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footerWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

  .footerLogo i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: #bcbcbc;
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.15s ease;
  }

  .footerNav a:hover {
    color: var(--secondStyleColor);
  }

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9a9a9a;
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

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

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

    .footerMeta {
      text-align: left;
    }
  }