
:root {
  --bg: #000000;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #ff0000;
  --accent-rgb: 255,0,0;
  --accent2: #aaff00;
  --accent2-rgb: 170,255,0;
  --accent3: #ff1ad9;
  --accent3-rgb: 255,26,217;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #000000;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #abadb3;
  --textMuted: #727378;
  --secondStyleColor: #ff0000;
  --bgCard: #1a1d27;
  --bgAlt: #121213;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 100vw; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100vw; }
::-webkit-scrollbar-thumb:hover { background: var(--secondStyleColor); filter: brightness(1.2); }
::-webkit-scrollbar-thumb:active { background: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.05); }

body {
  font-family: var(--font);
  background: var(--bodyBG);
  color: var(--textColor1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; object-position: 50% 20%; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* Standardized typography */
section h1 {
  font-size: 48px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
section h2 {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
section h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section h4 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section p,
section li {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
footer p,
footer li,
footer a {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h3 {
  font-size: 16px !important;
}
@media (max-width: 900px) {
  section h1 {
    font-size: 36px !important;
  }
  section h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 600px) {
  section h1 {
    font-size: 30px !important;
  }
  section h2 {
    font-size: 24px !important;
  }
  section h3 {
    font-size: 18px !important;
  }
  section p,
  section li {
    font-size: 15px !important;
  }
}

/* Heading font */
section h1, section h2, section h3, section h4,
header h1, header h2, header h3, header h4,
footer h3 {
  font-family: var(--font-heading) !important;
}

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


  /* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* border-bottom: 1px solid var(--secondStyleColor); */
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

  .nav {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

  @media (max-width: 1024px) {
    .header-cta {
      display: none;
    }
    .nav {
      display: none;
    }

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
      border: none;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: var(--textColor2) !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }



  .hero33 {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: var(--bodyBG);
  }

  .hero33__shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero33__shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.12;
  }
  .hero33__shape--1 {
    width: 300px;
    height: 300px;
    border-color: var(--secondStyleColor);
    top: -5%;
    right: 20%;
    animation: hero33spin 25s linear infinite;
  }
  .hero33__shape--2 {
    width: 150px;
    height: 150px;
    border-color: var(--accent2);
    border-radius: 50%;
    bottom: 15%;
    left: 10%;
    animation: hero33spin 30s linear infinite reverse;
  }
  .hero33__shape--3 {
    width: 80px;
    height: 80px;
    border-color: var(--secondStyleColor);
    top: 40%;
    left: 45%;
    transform: rotate(45deg);
    animation: hero33float 8s ease-in-out infinite alternate;
  }
  .hero33__shape--4 {
    width: 200px;
    height: 200px;
    border-color: var(--accent2);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    opacity: 0.06;
    animation: hero33spin 35s linear infinite;
  }
  .hero33__shape--5 {
    width: 120px;
    height: 120px;
    border-color: var(--textMuted);
    bottom: 20%;
    right: 10%;
    animation: hero33float 10s ease-in-out infinite alternate-reverse;
  }

  @keyframes hero33spin {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes hero33float {
    0% {
      transform: translateY(0) rotate(45deg);
    }
    100% {
      transform: translateY(-30px) rotate(55deg);
    }
  }

  .hero33::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: var(--textColor1);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
  }

  .hero33__left {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem 4rem 6rem;
  }

  .hero33__label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 0.5rem 0;
    border-top: 2px solid var(--secondStyleColor);
    margin-bottom: 2rem;
    animation: hero33fadeIn 0.6s ease both;
  }

  .hero33 h1 {
    color: var(--textColor1);
    margin-bottom: 1.5rem;
    animation: hero33fadeIn 0.6s ease 0.1s both;
  }

  .hero33 p {
    color: var(--textSecondary);
    max-width: 440px;
    margin-bottom: 2.5rem;
    animation: hero33fadeIn 0.6s ease 0.2s both;
  }

  .hero33__cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    animation: hero33fadeIn 0.6s ease 0.3s both;
  }

  .hero33__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  .hero33__btn--primary {
    padding: 0.9rem 2.2rem;
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .hero33__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
  }
  .hero33__btn--link {
    color: var(--textColor1);
    background: none;
    padding: 0;
    border-bottom: 1px solid var(--textColor1);
    padding-bottom: 2px;
  }
  .hero33__btn--link:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  .hero33__right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    height: 100%;
  }
  .hero33__visual {
    text-align: center;
    color: var(--bodyBG);
  }
  .hero33__big-number {
    font-size: clamp(6rem, 14vw, 12rem);
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    animation: hero33fadeIn 0.8s ease 0.4s both;
  }
  .hero33__visual-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-top: -1rem;
    animation: hero33fadeIn 0.8s ease 0.5s both;
  }

  .hero33__corner {
    position: absolute;
    z-index: 3;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-right: 2px solid var(--secondStyleColor);
    border-bottom: 2px solid var(--secondStyleColor);
    animation: hero33fadeIn 0.6s ease 0.6s both;
  }

  @keyframes hero33fadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 900px) {
    .hero33 {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero33::before {
      display: none;
    }
    .hero33__left {
      padding: 6rem 2rem 3rem;
    }
    .hero33__right {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero33__shape,
    .hero33__label,
    .hero33 h1,
    .hero33 p,
    .hero33__cta,
    .hero33__big-number,
    .hero33__visual-text,
    .hero33__corner {
      animation: none !important;
      opacity: 1;
      transform: none;
    }
    .hero33__shape--3 {
      transform: rotate(45deg);
    }
  }



  :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: 1px solid 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: var(--textColor1);
    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);
    margin: 0 auto;
  }

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



  /*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }



  /* ===== FEATURES v14 — Glass grid over background image ===== */

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

  .ft14__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.12;
    filter: blur(3px);
  }

  .ft14__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      var(--bodyBG) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      var(--bodyBG) 100%
    );
    pointer-events: none;
  }

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

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

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

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

  .ft14__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Card */
  .ft14__card {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

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

  /* Top accent line */
  .ft14__card-line {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .ft14__card:hover .ft14__card-line {
    opacity: 1;
    left: 10%;
    right: 10%;
  }

  .ft14__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondStyleColor);
    opacity: 0.5;
    margin-bottom: 14px;
  }

  .ft14__fa {
    font-size: 24px;
    color: var(--secondStyleColor);
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(
      0 4px 10px color-mix(in srgb, var(--secondStyleColor) 30%, transparent)
    );
    transition: transform 0.3s ease;
  }

  .ft14__card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft14__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 800px) {
    .ft14__card {
      padding: 24px 18px;
    }

    .ft14__card h3 {
      font-size: 16px;
    }

    .ft14__card p {
      font-size: 13px;
    }

    .ft14__fa {
      font-size: 20px;
    }
  }

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

    .ft14__head {
      margin-bottom: 36px;
    }

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

    .ft14__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .ft14__card {
      padding: 22px 16px;
    }

    .ft14__fa {
      font-size: 18px;
      margin-bottom: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft14__card,
    .ft14__fa,
    .ft14__card-line {
      transition: none;
    }
  }



  .jaifsdlliweif .container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    align-items: stretch;
  }
  .jaifsdlliweifContainer {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .about-left {
    flex: 0 0 60%;
    height: 600px;
    img {
      height: 100%;
      width: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  .about-right {
    display: flex;
    flex-direction: column;
    flex: 0 0 40%;
  }
  .about-righr-img {
    height: 300px;
    img {
      height: 100%;
      width: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }
  .iiyyru {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    && a {
      padding: 12px 20px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-weight: 800;
      cursor: pointer;
      border: 1px solid transparent;
      transition: 0.2s all linear;
      &&:hover {
        color: var(--textColor1);
        background-color: transparent;
        border: 1px solid var(--secondStyleColor);
      }
    }
  }

  @media (max-width: 800px) {
    .jaifsdlliweif .container {
      flex-direction: column;
    }
    .about-right {
      flex-direction: column-reverse;
    }
  }



  /* ===== HOW v10 — Zigzag serpentine layout ===== */

  .hw10__sec {
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Head */
  .hw10__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
  }

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

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

  /* Track — holds SVG + rows */
  .hw10__track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Central SVG serpentine */
  .hw10__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .hw10__path {
    animation: hw10Dash 25s linear infinite;
  }

  @keyframes hw10Dash {
    to {
      stroke-dashoffset: -360;
    }
  }

  /* Row — alternating sides */
  .hw10__row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
  }

  .hw10__row:last-child {
    margin-bottom: 0;
  }

  .hw10__row--left {
    justify-content: flex-start;
    padding-right: 52%;
  }

  .hw10__row--right {
    justify-content: flex-end;
    padding-left: 52%;
  }

  /* Dot on the path */
  .hw10__dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      0 0 18px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Card — glassmorphism */
  .hw10__card {
    position: relative;
    flex: 1;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
      transform 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .hw10__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  }

  /* Watermark number */
  .hw10__watermark {
    position: absolute;
    top: -18px;
    right: -6px;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondStyleColor);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
  }

  /* Badge */
  .hw10__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hw10__h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

  .hw10__p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

  /* ---- Responsive ---- */

  /* Tablets — zigzag сужается */
  @media (max-width: 950px) {
    .hw10__track {
      max-width: 700px;
    }

    .hw10__row--left {
      padding-right: 46%;
    }

    .hw10__row--right {
      padding-left: 46%;
    }

    .hw10__row {
      margin-bottom: 40px;
      gap: 18px;
    }

    .hw10__card {
      padding: 24px 20px 20px;
    }

    .hw10__watermark {
      font-size: 90px;
      top: -12px;
    }

    .hw10__head {
      margin-bottom: 45px;
    }
  }

  /* Small tablets — zigzag ещё уже */
  @media (max-width: 800px) {
    .hw10__row--left {
      padding-right: 40%;
    }

    .hw10__row--right {
      padding-left: 40%;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 34px;
      height: 34px;
      font-size: 13px;
      margin-bottom: 10px;
    }
  }

  /* Mobile — одна колонка, SVG и точки скрыты */
  @media (max-width: 600px) {
    .hw10__sec {
      padding: 50px 0;
    }

    .hw10__svg {
      display: none;
    }

    .hw10__dot {
      display: none;
    }

    .hw10__row--left,
    .hw10__row--right {
      padding: 0;
      justify-content: stretch;
    }

    .hw10__row {
      margin-bottom: 20px;
      gap: 0;
    }

    .hw10__card {
      width: 100%;
      padding: 22px 18px 18px;
    }

    .hw10__head {
      margin-bottom: 32px;
    }

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

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

    .hw10__watermark {
      font-size: 70px;
      top: -10px;
      right: -4px;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 32px;
      height: 32px;
      font-size: 12px;
      border-radius: 10px;
      margin-bottom: 10px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw10__path {
      animation: none;
    }
    .hw10__card {
      transition: none;
    }
  }



  #bonuses { padding: 80px 0; }
  .bn2-head { text-align: center; margin-bottom: 50px; }
  .bn2-head h2 { margin-bottom: 12px; }
  .bn2-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .bn2-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
  .bn2-list .bonus-card {
    display: flex; align-items: center; gap: 24px; padding: 24px 28px;
    background: var(--cardBG); border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor); position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }
  .bn2-list .bonus-card:hover { transform: translateX(8px); border-color: var(--accentColor); }
  .bn2-list .bonus-card__icon {
    width: 60px; height: 60px; border-radius: 50%; background: var(--accentColor);
    display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; flex-shrink: 0;
  }
  .bn2-list .bonus-card__body { flex: 1; }
  .bn2-list .bonus-card h3 { font-size: 18px; margin-bottom: 6px; }
  .bn2-list .bonus-card p { color: var(--textSecondary); font-size: 14px; }
  .bn2-list .bonus-card__badge {
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
    background: var(--accentColor); color: #fff; flex-shrink: 0;
  }
  .bn2-list .bonus-card__badge:empty { display: none; }
  .bn2-list .bonus-card__cat { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--accentColor); font-weight: 500; }
  @media (max-width: 600px) {
    .bn2-list .bonus-card { flex-direction: column; text-align: center; gap: 14px; }
    .bn2-list .bonus-card__icon { margin: 0 auto; }
  }



  .banner-section {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    h2 {
      text-transform: uppercase;
      text-align: center;
    }
  }
  .banner-section img {
    position: absolute;
    width: 120%;
    height: 120%;
    inset: 0;
    z-index: -1;
    object-fit: cover;
    object-position: 50% 20%;
    filter: blur(15px);
    opacity: 0.2;
  }



  /* ===== MOBILE v6 — Phone left, checklist right ===== */

  .mob6 {
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
  }

  .mob6 > .container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Phone */
  .mob6__left {
    flex-shrink: 0;
  }

  .mob6__phone {
    position: relative;
    width: 270px;
    height: 540px;
    background: linear-gradient(160deg, #2a2a3e, #1a1a2e);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 30px 60px rgba(0,0,0,0.5);
  }

  .mob6__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 3;
  }

  .mob6__screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bgCard);
  }

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

  /* Right side */
  .mob6__right {
    flex: 1;
    min-width: 0;
  }

  .mob6__right h2 {
    margin: 0 0 16px;
    font-weight: 700;
  }

  .mob6__right > p {
    margin: 0 0 28px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  /* Checklist */
  .mob6__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .mob6__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .mob6__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .mob6__icon i {
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  .mob6__item h3 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
  }

  .mob6__item p {
    margin: 0;
    font-size: 13px;
    color: var(--textSecondary);
    line-height: 1.5;
  }

  /* Store buttons */
  .mob6__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .mob6__store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-radius: var(--borderRadius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
  }

  .mob6__store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .mob6__store i {
    font-size: 28px;
  }

  .mob6__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
  }

  .mob6__store small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .mob6 > .container {
      flex-direction: column;
      text-align: center;
    }

    .mob6__item {
      text-align: left;
    }

    .mob6__buttons {
      justify-content: center;
    }

    .mob6__phone {
      width: 220px;
      height: 440px;
      border-radius: 32px;
      padding: 10px;
    }

    .mob6__screen {
      border-radius: 24px;
    }

    .mob6__notch {
      width: 90px;
      height: 22px;
      top: 10px;
    }
  }

  @media (max-width: 600px) {
    .mob6__phone {
      width: 200px;
      height: 400px;
    }
  }



  .expertReview a {
    color: var(--secondStyleColor);
  }
  #expertreview h2 {
    text-align: center;
  }
  .expertReview p {
    border-left: 5px solid var(--secondStyleColor);
    padding-left: 20px;
    margin-bottom: 30px;
    span {
      font-style: italic;
      opacity: 0.6;
    }
  }



  /* ===========================
     FAQ 12 — Aurora Cascade
     Staggered glass grid + animated SVG waves + shimmer accents
     =========================== */

  .faq12 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* SVG wave background */
  .faq12__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Floating glow blobs */
  .faq12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .faq12__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -100px;
    right: -80px;
    animation: faq12-drift1 28s ease-in-out infinite;
  }

  .faq12__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
    animation: faq12-drift2 33s ease-in-out infinite;
  }

  @keyframes faq12-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, 60px) scale(1.1);
    }
    66% {
      transform: translate(30px, -40px) scale(0.95);
    }
  }

  @keyframes faq12-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(40px, -30px) scale(1.08);
    }
    66% {
      transform: translate(-60px, 50px) scale(0.93);
    }
  }

  /* Header */
  .faq12__head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 48px;
    text-align: center;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq12__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq12__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
  }

  .faq12__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

  /* Grid — two columns, right column offset for cascade effect */
  .faq12__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq12__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .faq12__col--offset {
    padding-top: 52px;
  }

  /* Card */
  .faq12__card {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    overflow: hidden;
    transition:
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.45s ease;
    animation: faq12-float 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq12__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow:
      0 12px 40px color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    animation-play-state: paused;
  }

  @keyframes faq12-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  /* Shimmer accent line at top of card */
  .faq12__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 30%,
      var(--secondStyleColor) 50%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: faq12-shimmer 4s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }

  .faq12__card:hover .faq12__accent {
    opacity: 1;
  }

  @keyframes faq12-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Number badge */
  .faq12__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    margin-bottom: 18px;
    animation: faq12-breathe 3.5s ease-in-out infinite;
  }

  @keyframes faq12-breathe {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 18px 4px
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    }
  }

  /* Question */
  .faq12__question {
    margin: 0 0 10px;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Answer */
  .faq12__answer {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0.78;
    transition: opacity 0.3s ease;
  }

  .faq12__card:hover .faq12__answer {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq12__bg * {
      animation: none !important;
    }
    .faq12__glow {
      animation: none !important;
    }
    .faq12__card {
      animation: none !important;
    }
    .faq12__accent {
      animation: none !important;
    }
    .faq12__num {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq12__grid {
      gap: 18px;
    }
    .faq12__col--offset {
      padding-top: 36px;
    }
    .faq12__card {
      padding: 24px 22px 22px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq12__grid {
      grid-template-columns: 1fr;
      max-width: 560px;
    }
    .faq12__col--offset {
      padding-top: 0;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq12__card {
      padding: 22px 18px 20px;
    }
    .faq12__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      margin-bottom: 14px;
    }
  }



  .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: var(--textSecondary);
    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;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

  .footer-links li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

  .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 {
      columns: 1;
      text-align: center;
    }

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



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}