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


/* ===== HEADER v5 — Glass floating bar + centered nav pill ===== */

  .hd5 {
    position: relative;
    z-index: 100;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bodyBG) 85%, transparent),
      color-mix(in srgb, var(--bodyBG) 70%, transparent)
    );

    border-bottom: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hd5__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
  }

  /* Logo */
  .hd5__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--textColor1);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Desktop nav — centered pill */
  .hd5__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hd5__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 5px 6px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .hd5__nav .hd5__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    border-radius: 100px;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  .hd5__nav .hd5__link:hover {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* CTA button */
  .hd5__cta {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .hd5__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Burger — hidden on desktop */
  .hd5__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 10px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

  .hd5__burger:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .hd5__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--textColor1);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transform-origin: center;
  }

  /* Burger active state */
  .hd5__burger.active .hd5__burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .hd5__burger.active .hd5__burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* Mobile overlay — hidden by default */
  .hd5__mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

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

  .hd5__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hd5__mobile .hd5__link {
    font-size: 22px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .hd5__mobile .hd5__link:hover {
    color: var(--secondStyleColor);
  }

  .hd5__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .stopScroll {
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hd5__nav {
      display: none;
    }

    .hd5__cta {
      display: none;
    }

    .hd5__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd5__mobile,
    .hd5__burger-line,
    .hd5__burger,
    .hd5__cta,
    .hd5__nav .hd5__link {
      transition: none;
    }
  }


/* ===== HERO v26 — Aurora waves + hex grid + orbiting particles ===== */

  .hr27 {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vw, 160px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background image */
  .hr27__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hr27__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
  }

  /* Aurora SVG */
  .hr27__aurora {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--secondStyleColor);
    pointer-events: none;
    z-index: 1;
  }

  .hr27__wave1 {
    animation: hr27Drift1 8s ease-in-out infinite alternate;
  }

  .hr27__wave2 {
    animation: hr27Drift2 10s ease-in-out infinite alternate;
  }

  @keyframes hr27Drift1 {
    0% {
      transform: translateY(0) translateX(0);
    }
    100% {
      transform: translateY(-40px) translateX(30px);
    }
  }

  @keyframes hr27Drift2 {
    0% {
      transform: translateY(0) translateX(0);
    }
    100% {
      transform: translateY(30px) translateX(-40px);
    }
  }

  .hr27 .container {
    position: relative;
    z-index: 2;
  }

  /* Content */
  .hr27__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .hr27__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hr27__live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px var(--secondStyleColor);
    animation: hr27Blink 2s ease-in-out infinite;
  }

  @keyframes hr27Blink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
  }

  .hr27__content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  }

  .hr27__content > p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    max-width: 540px;
  }

  /* Actions */
  .hr27__actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }

  .hr27__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--borderRadius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .hr27__btn--fill {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .hr27__btn--fill i {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .hr27__btn--fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hr27__btn--fill:hover i {
    transform: translateX(3px);
  }

  .hr27__btn--glass {
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    color: var(--textColor1);
    background: color-mix(in srgb, var(--bodyBG) 30%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hr27__btn--glass:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    transform: translateY(-2px);
  }

  /* Metrics */
  .hr27__metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    padding: 16px 28px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 40%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hr27__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .hr27__metric strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

  .hr27__metric span {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .hr27__sep {
    width: 1px;
    height: 28px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hr27 {
      min-height: 500px;
    }

    .hr27__content h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 600px) {
    .hr27 {
      padding: 80px 0;
      min-height: 420px;
    }

    .hr27__content h1 {
      font-size: 28px;
    }

    .hr27__content > p {
      font-size: 15px;
    }

    .hr27__actions {
      flex-direction: column;
      width: 100%;
    }

    .hr27__btn {
      justify-content: center;
    }

    .hr27__metrics {
      gap: 16px;
      padding: 14px 20px;
    }

    .hr27__metric strong {
      font-size: 17px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hr27__live,
    .hr27__wave1,
    .hr27__wave2 {
      animation: none;
    }

    .hr27__btn,
    .hr27__btn--fill i {
      transition: none;
    }

    .hr27__aurora * {
      animation: none !important;
    }
  }


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


/* ===== ABOUT v17 — Company timeline with SVG connector + alternating cards ===== */

  .ab17 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .ab17__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }

  .ab17__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .ab17__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .ab17__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Timeline */
  .ab17__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .ab17__connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    margin-left: -2px;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    z-index: 0;
  }

  /* Items */
  .ab17__item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    align-items: start;
    z-index: 1;
  }

  .ab17__item .ab17__card {
    grid-column: 1;
  }

  .ab17__item .ab17__node {
    grid-column: 2;
    grid-row: 1;
  }

  .ab17__item--right .ab17__card {
    grid-column: 3;
  }

  .ab17__item:not(.ab17__item--right) .ab17__card {
    grid-column: 1;
    text-align: right;
  }

  /* Node */
  .ab17__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 16px;
  }

  .ab17__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transition: transform 0.3s ease;
  }

  .ab17__item:hover .ab17__dot {
    transform: scale(1.3);
  }

  .ab17__year {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondStyleColor);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  /* Cards */
  .ab17__card {
    padding: 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.03);
    margin: 0 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ab17__item:hover .ab17__card {
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .ab17__item:not(.ab17__item--right):hover .ab17__card {
    transform: translateX(-4px);
  }

  .ab17__item--right:hover .ab17__card {
    transform: translateX(4px);
  }

  /* Image card */
  .ab17__card--img {
    padding: 0;
    overflow: hidden;
  }

  .ab17__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .ab17__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .ab17__item:hover .ab17__thumb img {
    transform: scale(1.04);
  }

  .ab17__card-text {
    padding: 18px 20px;
  }

  .ab17__card h3,
  .ab17__card-text h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

  .ab17__card p,
  .ab17__card-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ab17__card {
      margin: 0 12px;
    }
  }

  @media (max-width: 800px) {
    .ab17__item,
    .ab17__item--right {
      grid-template-columns: 36px 1fr;
    }

    .ab17__item .ab17__card,
    .ab17__item--right .ab17__card {
      grid-column: 2;
      text-align: left;
    }

    .ab17__item .ab17__node,
    .ab17__item--right .ab17__node {
      grid-column: 1;
    }

    .ab17__connector {
      left: 18px;
      margin-left: 0;
    }

    .ab17__item:not(.ab17__item--right):hover .ab17__card,
    .ab17__item--right:hover .ab17__card {
      transform: translateX(4px);
    }

    .ab17__card {
      margin: 0 0 0 12px;
    }

    .ab17__card h3,
    .ab17__card-text h3 {
      font-size: 16px;
    }

    .ab17__card p,
    .ab17__card-text p {
      font-size: 13px;
    }
  }

  @media (max-width: 600px) {
    .ab17 {
      padding: 50px 0;
    }

    .ab17__head {
      margin-bottom: 40px;
    }

    .ab17__head h2 {
      font-size: 24px;
    }

    .ab17__timeline {
      gap: 24px;
    }

    .ab17__card {
      padding: 18px 16px;
    }

    .ab17__card-text {
      padding: 14px 16px;
    }

    .ab17__dot {
      width: 12px;
      height: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab17__dot,
    .ab17__card,
    .ab17__thumb img {
      transition: none;
    }
  }


/* ===== FEATURES v16 — Magazine editorial with SVG wave dividers ===== */

  .ft16 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
  }

  .ft16__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
  }

  .ft16__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .ft16__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Blocks */
  .ft16__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  .ft16__block--rev {
    direction: rtl;
  }

  .ft16__block--rev > * {
    direction: ltr;
  }

  /* Media */
  .ft16__media {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .ft16__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .ft16__block:hover .ft16__media img {
    transform: scale(1.04);
  }

  /* Text */
  .ft16__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft16__label {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .ft16__text h3 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .ft16__text > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  }

  .ft16__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }

  .ft16__tags span {
    padding: 6px 14px;
    border-radius: var(--borderRadius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
    transition: border-color 0.25s ease, color 0.25s ease;
  }

  .ft16__block:hover .ft16__tags span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
  }

  /* SVG wave divider */
  .ft16__wave {
    display: block;
    width: 100%;
    height: 40px;
    margin: 50px 0;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft16__block {
      gap: 30px;
    }

    .ft16__text h3 {
      font-size: 20px;
    }
  }

  @media (max-width: 800px) {
    .ft16__block,
    .ft16__block--rev {
      grid-template-columns: 1fr;
      direction: ltr;
    }

    .ft16__media {
      aspect-ratio: 16 / 9;
    }

    .ft16__wave {
      margin: 36px 0;
    }

    .ft16__text > p {
      font-size: 14px;
    }
  }

  @media (max-width: 600px) {
    .ft16 {
      padding: 50px 0;
    }

    .ft16__head {
      margin-bottom: 40px;
    }

    .ft16__head h2 {
      font-size: 24px;
    }

    .ft16__wave {
      margin: 28px 0;
      height: 30px;
    }

    .ft16__tags span {
      font-size: 11px;
      padding: 5px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft16__media img,
    .ft16__tags span {
      transition: none;
    }
  }


/* ===== PARTNERS v9 — Minimal full-width strip ===== */

  .pt9 {
    color: var(--textColor1);
  }

  .pt9__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    padding: clamp(40px, 5vw, 70px) 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  }

  .pt9__inner {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
  }

  .pt9__text {
    flex: 1;
  }

  .pt9__text h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .pt9__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 480px;
  }

  /* Vertical divider */
  .pt9__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
      180deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
    flex-shrink: 0;
  }

  /* Logo */
  .pt9__logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 36px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .pt9__logo-box:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    transform: translateY(-3px);
  }

  .pt9__logo-box img {
    max-width: 200px;
    max-height: 70px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt9__inner {
      flex-direction: column;
      text-align: center;
    }

    .pt9__divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        var(--secondStyleColor),
        transparent
      );
    }

    .pt9__text p {
      max-width: 100%;
    }

    .pt9__logo-box {
      padding: 20px 30px;
    }

    .pt9__logo-box img {
      max-width: 170px;
    }
  }

  @media (max-width: 600px) {
    .pt9__strip {
      padding: 36px 0;
    }

    .pt9__text h2 {
      font-size: 24px;
    }

    .pt9__text p {
      font-size: 14px;
    }

    .pt9__logo-box {
      padding: 18px 24px;
    }

    .pt9__logo-box img {
      max-width: 140px;
      max-height: 50px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt9__logo-box {
      transition: none;
    }
  }


.reviewHeader {
    color: var(--textColor1);
    margin-bottom: 40px;
  }

  /* Masonry как на скрине */
  .masonry {
    column-count: 3;
    column-gap: 28px;
  }

  .masonry-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    border-radius: var(--borderRadius);
    padding: 34px 32px 26px;
    margin: 0 0 28px;
    position: relative;
    border: 1px solid var(--secondStyleColor);
  }

  .quoteMark {
    width: 42px;
    height: 28px;
    display: inline-block;
    margin: 2px 0 18px;
  }

  /* две красные “галочки” */
  .quoteMark::before,
  .quoteMark::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 20px;
    height: 20px;
    background: var(--secondStyleColor);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .quoteMark::before {
    left: 32px;
  }
  .quoteMark::after {
    left: 56px;
    transform: scaleX(-1);
  }

  .text {
    margin: 0;
    color: var(--textColor1);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
  }

  .urevj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 30% 30%,
        rgba(255, 59, 48, 0.35),
        transparent 55%
      ),
      radial-gradient(
        circle at 70% 70%,
        rgba(30, 136, 255, 0.35),
        transparent 55%
      ),
      #f3f4f7;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bhkasjh {
    min-width: 0;
  }

  .name {
    margin: 0;
    font-weight: 800;
    font-size: 15px;
    color: var(--textColor1);
    line-height: 1.25;
  }

  .role {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--textColor1);
    font-weight: 600;
  }

  /* Точный “воздух” как в макете */
  .masonry-card.tight .text {
    line-height: 1.85;
  }

  /* Адаптив */
  @media (max-width: 1100px) {
    .masonry {
      column-count: 2;
    }
  }
  @media (max-width: 700px) {
    .masonry {
      column-count: 1;
    }
    .masonry-card {
      padding: 28px 22px 22px;
    }
    .quoteMark::before,
    .quoteMark::after {
      top: 28px;
    }
    .quoteMark::before {
      left: 22px;
    }
    .quoteMark::after {
      left: 46px;
    }
    .reviewHeader {
      margin-bottom: 20px;
    }
  }


/* ===== SOMETHING v15 — Coming soon countdown with SVG grid bg + image ===== */

  .sm15 {
    position: relative;
    padding: clamp(80px, 9vw, 130px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .sm15__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .sm15__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
  }

  .sm15__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    z-index: 1;
    pointer-events: none;
  }

  .sm15 .container {
    position: relative;
    z-index: 2;
  }

  .sm15__block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .sm15__kicker {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .sm15__block h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .sm15__block > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 480px;
  }

  /* Timer */
  .sm15__timer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0;
  }

  .sm15__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sm15__box {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sm15__box span {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--secondStyleColor);
    font-variant-numeric: tabular-nums;
  }

  .sm15__box--pulse {
    animation: sm15Pulse 1s ease-in-out infinite alternate;
  }

  @keyframes sm15Pulse {
    0% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 16%,
        transparent
      );
    }
    100% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 50%,
        transparent
      );
    }
  }

  .sm15__unit small {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }

  .sm15__sep {
    font-size: 32px;
    font-weight: 700;
    color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    line-height: clamp(60px, 10vw, 80px);
  }

  /* Actions */
  .sm15__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
  }

  .sm15__btn {
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .sm15__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .sm15__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .sm15__link i {
    font-size: 12px;
    transition: transform 0.2s ease;
  }

  .sm15__link:hover i {
    transform: translateX(3px);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .sm15__block h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 600px) {
    .sm15 {
      padding: 50px 0;
    }

    .sm15__timer {
      gap: 4px;
    }

    .sm15__sep {
      font-size: 24px;
    }

    .sm15__block h2 {
      font-size: 24px;
    }

    .sm15__actions {
      flex-direction: column;
      gap: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sm15__box--pulse {
      animation: none;
    }

    .sm15__btn,
    .sm15__link,
    .sm15__link i {
      transition: none;
    }
  }


/* ===== ROADMAP BASE ===== */

  .roadmapSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

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

  .roadmapHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .roadmapEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .roadmapTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .roadmapSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* ===== ROADMAP v1 (timeline) ===== */

  .roadmapTimeline {
    margin-top: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .roadmapStep {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 16px 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .roadmapStep::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

  .roadmapStep:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .roadmapBadge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 6px;
  }

  .roadmapStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapStepText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== ROADMAP v2 (cards grid) ===== */

  .roadmapSection-v2 .roadmapGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .roadmapCard {
    border-radius: var(--borderRadius);
    padding: 18px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .roadmapCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .roadmapCardTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .roadmapYear {
    font-size: 13px;
    font-weight: 600;
  }

  .roadmapTag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2, 255, 57, 0.7);
    color: var(--secondStyleColor);
  }

  .roadmapCardTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapCardText {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
  }

  /* ===== ROADMAP v3 (horizontal track) ===== */

  .roadmapSection-v3 .roadmapTrack {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .roadmapTrackLine {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 0;
  }

  .roadmapStage {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 30px 18px 18px 18px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    z-index: 1;
  }

  .roadmapStage--active {
    border-color: var(--secondStyleColor);
  }

  .roadmapDot {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

  .roadmapStageLabel {
    margin-left: 28px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 4px;
  }

  .roadmapStageTitle {
    font-size: 16px;
    font-weight: 600;
    margin-left: 0;
    margin-bottom: 6px;
  }

  .roadmapStageText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== RESPONSIVE ===== */

  @media (max-width: 900px) {
    .roadmapSection-v2 .roadmapGrid {
      grid-template-columns: 1fr;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .roadmapTimeline {
      border-left: none;
      padding-left: 0;
    }

    .roadmapStep::before {
      left: 14px;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr;
    }

    .roadmapTrackLine {
      display: none;
    }
  }


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


[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%;
    }
  }


.site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #e5e7eb;
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

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

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

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

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

    .footer-contacts,
    .footer-links {
      align-items: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }