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


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

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    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-family: system-ui, -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
    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: 0;
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 6px 4px;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  }

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

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

    .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: #050814 !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;
    }
  }


.hero {
    position: relative;
    padding: 140px 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.45);
    z-index: -1;
  }

  /* Layout */
  .hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
  }

  /* Left image */
  .hero-img {
    max-width: 520px;
    border-radius: var(--borderRadius);
    object-fit: contain;
    max-height: 500px;
  }

  /* Right text */
  .hero-content {
    width: 50%;
    max-width: 560px;
  }

  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textColor1);
    margin-bottom: 30px;
  }

  .hero-content a {
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--borderRadius);
    text-decoration: none;
    transition: 0.2s ease;
  }

  .hero-content a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-flex {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    .hero-img {
      width: 80%;
    }

    .hero-content {
      width: 100%;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-content p {
      font-size: 16px;
    }
  }

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

    .hero-img {
      display: none;
    }

    .hero-content h1 {
      font-size: 30px;
    }
  }


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

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    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;
    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(--secondStyleColor);
  }

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


.our-services .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .aboutImageWrapper {
    width: 1320px;
    height: 400px;

    img {
      object-fit: cover;
      width: 100%;
      object-position: top;
      height: 100%;
      border-radius: var(--borderRadius);
    }
  }

  .our-services .left-image {
    margin-right: 45px;
  }

  .our-services .section-heading h2 {
    margin-right: 100px;
  }

  .our-services .section-heading p {
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .our-services .progress-skill-bar {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
  }

  .our-services .progress-skill-bar span {
    position: absolute;
    top: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondStyleColor);
  }

  .our-services .first-bar span {
    left: 69%;
  }

  .our-services .second-bar span {
    left: 81%;
  }

  .our-services .third-bar span {
    left: 88%;
  }

  .our-services .progress-skill-bar h3 {
    font-weight: 700;
    color: var(--textColor1);
    margin-bottom: 14px;
  }

  .our-services .progress-skill-bar .full-bar {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background-color: var(--bodyBG);
    position: relative;
    z-index: 1;
  }

  .our-services .progress-skill-bar .filled-bar {
    background: var(--secondStyleColor);
    background: linear-gradient(
      105deg,
      var(--secondStyleColor) 0%,
      var(--secondStyleColor) 100%
    );
    height: 6px;
    border-radius: 3px;
    margin-bottom: -6px;
    position: relative;
    z-index: 2;
  }

  .our-services .first-bar .filled-bar {
    width: 71%;
  }

  .our-services .second-bar .filled-bar {
    width: 83%;
  }

  .our-services .third-bar .filled-bar {
    width: 90%;
  }

  @media (max-width: 800px) {
    .our-services .container {
      flex-direction: column;
    }
    .aboutImageWrapper {
      width: 100%;
    }
  }


/*  */
  .partners--luxe {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 20px 0;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  .partners--luxe::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -10%;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent),
      transparent 70%
    );
    opacity: 0.75;
    z-index: -2;
    pointer-events: none;
  }

  .partners--luxe::after {
    content: "";
    position: absolute;
    inset: auto -12% -40% auto;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--mainStyleColor) 26%, transparent),
      transparent 72%
    );
    opacity: 0.6;
    z-index: -3;
    pointer-events: none;
  }

  .partnersShell {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 4vw, 44px);
  }

  .partnersKicker {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-size: 13px;
  }

  .partnersHead h2 {
    margin: 0 0 10px 0;
  }

  .partnersCopy {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
  }

  .partnerCard {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(14px, 2.6vw, 26px);
    border-radius: calc(var(--borderRadius) * 0.9);
    padding: clamp(18px, 3vw, 32px);
    border: 2px solid
      color-mix(in srgb, var(--secondStyleColor) 44%, transparent);
    background:
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 14%, transparent),
        transparent 60%
      ),
      color-mix(in srgb, var(--mainStyleColor) 6%, transparent);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .partnerCard--feature::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    mask:
      linear-gradient(#000, #000) padding-box,
      linear-gradient(#000, #000);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
  }

  .partnerMedia {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 26px;
    padding: clamp(16px, 2.6vw, 26px);
    min-height: 200px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    background:
      radial-gradient(
        120% 120% at 10% 10%,
        color-mix(in srgb, var(--secondStyleColor) 22%, transparent),
        transparent 65%
      ),
      color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
    box-shadow:
      inset 0 0 0 1px
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      0 18px 40px rgba(0, 0, 0, 0.28);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .partnerMedia:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      inset 0 0 0 1px
        color-mix(in srgb, var(--secondStyleColor) 24%, transparent),
      0 26px 60px rgba(0, 0, 0, 0.34);
  }

  .partnerMedia img {
    max-width: min(190px, 80%);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.32));
  }

  .partnerMeta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .partnerMeta h3 {
    margin: 0;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.15;
  }

  .partnerMeta > p {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.95;
    line-height: 1.7;
    max-width: 56ch;
  }

  .partnerBullets {
    margin: 6px 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
  }

  .partnerBullets li {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
    font-weight: 600;
  }

  .partnerAura {
    position: absolute;
    inset: auto -10% -40% auto;
    width: min(320px, 40vw);
    height: min(320px, 40vw);
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
      transparent 70%
    );
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
  }

  .partnerSide {
    display: grid;
    gap: 12px;
  }

  .partnerMini {
    border-radius: calc(var(--borderRadius) * 0.8);
    padding: 16px 18px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    position: relative;
    overflow: hidden;
  }

  .partnerMini::after {
    content: "";
    position: absolute;
    inset: auto -30% -60% auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      transparent 72%
    );
    opacity: 0.7;
    pointer-events: none;
  }

  .miniLabel {
    margin: 0 0 6px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    color: var(--secondStyleColor);
  }

  .miniText {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
    line-height: 1.65;
    position: relative;
    z-index: 1;
  }

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

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


#reviews .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .revierhweaul-head {
    margin-bottom: 40px;
    && h2,
    p {
      text-align: center;
    }
  }

  #reviews ul {
    position: relative;
    transform-style: preserve-3d;
    perspective: 500px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: 500ms;
  }

  #reviews ul:hover {
    gap: 20px;
  }

  #reviews ul li {
    position: relative;
    list-style: none;
    width: 80%;
    margin: 0 auto;
    min-height: 120px;
    padding: 16px;
    background: var(--textColor1);
    border-radius: var(--borderRadius);
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
    transition: 500ms;
    transition-delay: calc(var(--i) * 50ms);
    cursor: pointer;
  }

  #reviews ul li:nth-child(1) {
    transform: translateZ(-75px) translateY(20px);
    opacity: 0.6;
    filter: blur(4px);
  }

  #reviews ul li:nth-child(2) {
    opacity: 0.8;
    filter: blur(2px);
  }

  #reviews ul li:nth-child(3) {
    transform: translateZ(65px) translateY(-30px);
  }

  #reviews ul li:nth-child(4) {
    transform: translateZ(125px) translateY(-68px);
    filter: blur(1px);
  }

  #reviews ul:hover li {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0) translateY(0);
  }

  #reviews ul li img {
    max-width: 64px;
    border-radius: 8px;
  }

  #reviews ul li .content {
    width: 100%;
  }

  #reviews ul li .content h3 {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1;
    color: var(--textColor2);
  }

  #reviews ul li .content p {
    color: var(--textColor2);
    opacity: 0.6;
    line-height: 1;
  }

  @media (max-width: 800px) {
    #reviews ul {
      perspective: none;
      gap: 20px;
    }
    #reviews ul li:nth-child(1),
    #reviews ul li:nth-child(2),
    #reviews ul li:nth-child(3),
    #reviews ul li:nth-child(4) {
      transform: translateZ(0) translateY(0);
      opacity: 1;
      filter: blur(0px);
      width: 100%;
    }
  }


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


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

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

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

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

  .featuresTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

  /* Grid */
  .featuresGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

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

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

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d2d2;
  }

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


.real-gallery {
    padding: 60px 0;
  }

  .real-gallery__inner {
    position: relative;
  }

  .real-gallery__swiper {
    width: 100%;
    position: relative;
    padding: 0 80px;
  }
  .galeryhead {
    margin-bottom: 45px;
  }

  /* слайд-лента */
  .real-gallery__wrapper {
    align-items: center;
  }

  /* отдельный слайд */
  .real-gallery__slide {
    display: flex;
    justify-content: center;
    cursor: grab;
    &&:active {
      cursor: grabbing;
    }
  }

  .real-gallery__slide img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
    user-select: none;
  }

  .gallery-naw-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
  }
  /* стрелки */
  .real-gallery__nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    line-height: 1;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .real-gallery__nav span {
    /* если внутри стрелка в span */
    transform: translate(-1px, -2px); /* или translateY(-1px); по вкусу */
  }

  .real-gallery__nav--next span {
    transform: translate(1px, -2px);
  }

  /* адаптивно */
  @media (max-width: 992px) {
    .real-gallery__slide img {
      height: 420px;
    }
    .galeryhead {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 640px) {
    .real-gallery__slide img {
      height: 360px;
    }
  }


.bx7-cta-wrap {
    padding: 70px 0;
    color: var(--textColor1);
  }

  .bx7-cta-inner {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }

  .bx7-title {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .bx7-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #dcdcdc;
  }

  .bx7-btn {
    display: inline-block;
    background: var(--secondStyleColor);
    color: #111;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: var(--borderRadius);
    transition: 0.2s ease;
  }

  .bx7-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }


.planshead {
    margin-bottom: 45px;
  }

  /* Billing switcher */
  .billing-switcher {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 20px;
  }

  .plansWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .billing-switcher * {
    transition: all 0.2s ease-in-out;
  }

  .yearly #month,
  #year {
    color: var(--textColor1);
    text-transform: uppercase;
  }

  .yearly #year {
    color: var(--textColor1);
  }

  .billing-switcher button {
    width: 4rem;
    height: 2rem;
    background: var(--secondStyleColor);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
  }

  .billing-switcher button span {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;

    background: white;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
  }

  .yearly button span {
    transform: translateX(2rem);
  }

  /* Pricing plans */
  .plans {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
  }

  .plan-content {
    background-color: transparent;
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 20rem;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07),
      0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
      0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
      0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035),
      0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725),
      0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  }

  .meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--text-color-10);
    padding-bottom: 2rem;
  }

  .price {
    font-size: 2.441rem;
    font-weight: 100;
  }

  .title {
    font-size: 1.953rem;
    font-weight: 900;
  }

  .description {
    font-size: 1.25rem;
    color: var(--text-color-60);
  }

  .features {
    font-weight: 500;
    color: var(--text-color-90);
    list-style: none;
    padding: 0;
  }

  .features li {
    margin-bottom: 10px;
    /* padding-left: 40px; */
    /* list-style: disc; */
  }

  .btn {
    display: inline-block;
    cursor: pointer;
    padding: 1rem 2rem;
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: var(--textColor1);
  }

  /* Awesome additions using CSS transforms */
  /* Translate */
  .plan {
    position: relative;
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-5px);
    }

    img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      z-index: -1;
      border-radius: var(--borderRadius);
      filter: blur(5px);
      opacity: 0.2;
    }
  }

  .plan :is(.shadow-1, .shadow-2) {
    background-color: var(--card-shadow-color);
    width: 100%;
    height: 100%;
    border-radius: var(--card-radius);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
  }

  .plan:hover .shadow-1 {
    transform: translate(-1rem, 1rem);
    width: calc(100% + 2rem);
  }

  .plan:hover .shadow-2 {
    transform: translate(-2rem, 2rem);
    width: calc(100% + 4rem);
  }

  /* Scale */
  .yearly #month,
  #year {
    transform: scale(0.8);
  }

  .yearly #year {
    transform: scale(1);
  }

  /* Rotate */
  .billing-switcher button span {
    background: white
      url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.58225 6.79651C0.3685 6.58276 0.25 6.30151 0.25 6.00151C0.25 5.69926 0.3685 5.41651 0.58225 5.20501L5.707 0.219756C6.00325 -0.0727435 6.48175 -0.0727435 6.778 0.219756C7.07425 0.512256 7.07425 0.987756 6.778 1.27951L1.921 6.00151L6.778 10.722C7.07425 11.0145 7.07425 11.49 6.778 11.7833C6.48175 12.0758 6.00325 12.0758 5.707 11.7818L0.58225 6.79726V6.79651Z' fill='%23ECAD1D'/%3E%3C/svg%3E%0A")
      no-repeat 45% center;
  }

  .yearly button span {
    transform: translateX(2rem) rotate(0.5turn);
  }

  /* Skew */
  .btn {
    position: relative;
    overflow: hidden;
    z-index: 100;
    transition: all 0.2s ease-in-out;
  }

  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background-color: var(--text-color);
    transform: skew(35deg);
    transition: width 0.2s ease-in-out;
    z-index: -1;
  }

  @media (max-width: 800px) {
    .plans {
      display: flex;
      flex-direction: column;
    }
  }


.roadmapZigzagList_q8t {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .roadmapZigzagItem_h6b {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
  }

  .roadmapZigzagItem_h6b--alt {
    direction: rtl;
  }

  .roadmapZigzagItem_h6b--alt .roadmapZigzagBody_m9y {
    direction: ltr;
  }

  .roadmapZigzagSide_u1c {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .roadmapZigzagPoint_v5r {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: rgba(2, 255, 57, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondStyleColor);
  }

  .roadmapZigzagLine_l0k {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
  }

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

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

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

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

  .roadmapZigzagText_j3s {
    font-size: 14px;
    line-height: 1.7;
    color: #dfdfdf;
  }

  /* ===== Responsive ===== */

  @media (max-width: 900px) {
    .roadmapSection-steps .roadmapStepsRow {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

  @media (max-width: 700px) {
    .roadmapSection-steps .roadmapStepsRow {
      grid-template-columns: 1fr;
    }

    .roadmapZigzagItem_h6b,
    .roadmapZigzagItem_h6b--alt {
      grid-template-columns: auto minmax(0, 1fr);
      direction: ltr;
    }
  }


/* ===========================
   FAQ 2026 — glass + neon + motion
   =========================== */

  .faq26 {
    position: relative;
    padding: clamp(56px, 6vw, 96px) 0;
    background:
      radial-gradient(
        1300px 760px at 18% 12%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 0%,
        transparent 62%
      ),
      radial-gradient(
        1050px 720px at 82% 18%,
        color-mix(in srgb, var(--bodyBG) 16%, transparent) 0%,
        transparent 68%
      ),
      radial-gradient(
        1100px 820px at 60% 92%,
        color-mix(in srgb, var(--bodyBG) 12%, transparent) 0%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        var(--bodyBG) 0%,
        color-mix(in srgb, var(--bodyBG) 92%, var(--secondStyleColor) 8%) 100%
      );

    overflow: hidden;
    color: var(--textColor1);
  }

  .faq26__head {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }

  .faq26__title {
    line-height: 1.05;
    margin: 0;
  }

  .faq26__sub {
    margin: 0;
    color: var(--textColor1);
    max-width: 62ch;
  }

  .faq26__grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  /* Card */
  .faq26__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 16px 18px;
    transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  /* gradient “neon edge” */
  .faq26__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: var(--borderRadius);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
  }

  .faq26__shine {
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 120%;
    background: radial-gradient(
      closest-side,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    );
    transform: translate3d(-20%, -20%, 0) rotate(12deg);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .faq26__card:hover .faq26__shine {
    opacity: 0.38;
  }

  /* Content */
  .faq26__content {
    position: relative;
    min-height: 76px;
    display: grid;
    align-content: center;
    padding-right: 8px;
  }

  /* Question / Answer layers */
  .faq26__q,
  .faq26__a {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    padding-right: 4px;
    will-change: transform, opacity, filter;
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.45s ease,
      filter 0.55s ease;
  }
  .faq26__q {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0px);
  }

  .faq26__a {
    opacity: 0;
    transform: translate3d(14px, 10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__step {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq26__qText {
    margin: 0;
    line-height: 1.2;
  }

  .faq26__hint {
    margin: 0;
    color: var(--textColor1);
  }

  .faq26__aTitle {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .faq26__aText {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.45;
  }

  .faq26__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  .faq26__chip {
    color: var(--textColor1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* Toggle button */
  .faq26__toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

  .faq26__toggle:hover {
    transform: translateY(-1px);
    border-color: var(--secondStyleColor);
  }
  .faq26__toggle:hover::before {
    opacity: 1;
  }

  .faq26__arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    border-top: 2px solid rgba(255, 255, 255, 0.86);
    transform: rotate(134deg);
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.3s ease;
  }

  /* OPEN STATE (answer visible) */
  .faq26__card.is-open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .faq26__card.is-open .faq26__q {
    opacity: 0;
    transform: translate3d(-18px, -10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__card.is-open .faq26__a {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0px);
  }

  .faq26__card.is-open .faq26__arrow {
    transform: rotate(312deg);
  }

  /* height animation via JS measured height */
  .faq26__content {
    transition: height 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
    height: 76px; /* will be overridden by JS */
  }
  /* по умолчанию (карточка закрыта): кликаем по вопросу */
  .faq26__q {
    pointer-events: auto;
  }
  .faq26__a {
    pointer-events: none;
  }

  /* когда открыто: кликаем по ответу, вопрос клики не ловит */
  .faq26__card.is-open .faq26__q {
    pointer-events: none;
  }
  .faq26__card.is-open .faq26__a {
    pointer-events: auto;
  }

  /* опционально, чтобы было понятно что кликабельно */
  .faq26__q,
  .faq26__a {
    cursor: pointer;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq26__bg {
      animation: none;
    }
    .faq26__q,
    .faq26__a,
    .faq26__toggle,
    .faq26__content {
      transition: none !important;
    }
  }

  /* Responsive */
  @media (max-width: 720px) {
    .faq26__card {
      grid-template-columns: 1fr;
    }
    .faq26__toggle {
      width: 100%;
      height: 44px;
      border-radius: 16px;
    }
  }


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