
:root {
  --bg: #1b2d1b;
  --bg-card: #243524;
  --text: #d4e7d4;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #4caf50;
  --accent-rgb: 76,175,80;
  --accent2: #4c8aaf;
  --accent2-rgb: 76,138,175;
  --accent3: #a5b85c;
  --accent3-rgb: 165,184,92;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #1b2d1b;
  --textColor1: #d4e7d4;
  --textColor2: #111111;
  --textSecondary: #a6b9a6;
  --textMuted: #788a78;
  --secondStyleColor: #4caf50;
  --bgCard: #243524;
  --bgAlt: #2a3c2a;
  --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;
}
.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; }


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

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

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

  .nav li {
    list-style: none;
  }

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

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

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

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

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



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

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

    && p {
      max-width: 900px;
      opacity: 0.7;
    }

    && a {
      font-size: 18px;
      padding: 20px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--textColor1);
      width: fit-content;
      color: var(--bodyBG);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        background-color: var(--secondStyleColor);
      }
    }
  }
  .homeuyydgb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.95) 20%,
      rgba(0, 0, 0, 0.75) 40%,
      rgba(0, 0, 0, 0.4) 66%,
      rgba(0, 0, 0, 0.15) 72%,
      rgba(0, 0, 0, 0) 78%
    );
  }

  .homeuyydgb .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .herocardsqwoejk {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .kkkkkkk1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    && span {
      font-size: 44px;
      font-weight: 900;
      color: var(--secondStyleColor);
    }
    && p {
      opacity: 1;
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .herocardsqwoejk {
      display: flex;
      flex-direction: column;
    }

    .homeuyydgb {
      && h1 {
        text-align: center;
      }
      && p:first-child {
        text-align: center;
        display: none;
      }
      && p {
        text-align: center;
      }
      && a {
        margin: 0 auto;
      }
    }
    .kkkkkkk1 {
      align-items: center;
      text-align: center;
    }
  }



  :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 .swiper-wrapper {
    padding-top: 36px;
    padding-bottom: 24px;
    position: relative;
  }

  .toc .swiper-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 10%,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 90%,
      transparent
    );
    transform: translateY(-50%);
    pointer-events: none;
  }

  .toc a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    padding: 28px 24px 10px;
    border-radius: 0;
    background-color: var(--itemBgColor);
    border: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 60%, transparent);
    border: 2px solid var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scale(1.35);
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
                0 0 16px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    background: var(--secondStyleColor);
  }

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

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::before,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }

    .toc a:hover::before {
      transform: translateX(-50%) scale(1);
    }
  }



.feat22{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.feat22__circle{
  position:absolute;
  border-radius:50%;
  border:1px solid var(--borderSubtle);
  pointer-events:none;
  opacity:.4;
}
.feat22__circle--1{
  width:600px;height:600px;
  top:-15%;right:-10%;
  animation:feat22rotate 60s linear infinite;
}
.feat22__circle--2{
  width:400px;height:400px;
  bottom:-10%;left:-5%;
  animation:feat22rotate 45s linear infinite reverse;
}
@keyframes feat22rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}

.feat22__container{position:relative;z-index:1;max-width:1100px}

.feat22__header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:2rem;
  margin-bottom:4rem;
  flex-wrap:wrap;
}
.feat22__header-left{max-width:550px}
.feat22__label{
  font-size:.65rem;font-weight:800;
  letter-spacing:.25em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1rem;
}
.feat22 h2{color:var(--textColor1)}
.feat22__header-right{max-width:350px}
.feat22__header-right p{
  color:var(--textSecondary);
  font-style:italic;
}

.feat22__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  perspective:1200px;
}

.feat22__card{
  position:relative;
  background:var(--bgCard);
  border:1px solid var(--borderSubtle);
  border-radius:var(--borderRadius);
  padding:2.5rem 2rem;
  transform-style:preserve-3d;
  transition:transform .4s cubic-bezier(.4,0,.2,1),box-shadow .4s ease;
  cursor:default;
  opacity:0;transform:translateY(30px) rotateX(5deg);
}
.feat22__card.visible{opacity:1;transform:translateY(0) rotateX(0)}
.feat22__card:hover{
  transform:translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.feat22__card::before{
  content:'';position:absolute;
  top:0;left:1.5rem;right:1.5rem;
  height:3px;border-radius:0 0 3px 3px;
  transform:scaleX(0);
  transition:transform .3s ease;
  transform-origin:left;
}
.feat22__card:hover::before{transform:scaleX(1)}
.feat22__card:nth-child(1)::before,.feat22__card:nth-child(5)::before{background:var(--secondStyleColor)}
.feat22__card:nth-child(2)::before,.feat22__card:nth-child(4)::before{background:var(--accent2)}
.feat22__card:nth-child(3)::before,.feat22__card:nth-child(6)::before{background:var(--accent3)}

.feat22__card-number{
  font-size:4rem;font-weight:800;
  line-height:1;
  color:var(--bgAlt);
  margin-bottom:1.5rem;
  transition:color .3s;
}
.feat22__card:nth-child(1):hover .feat22__card-number,
.feat22__card:nth-child(5):hover .feat22__card-number{color:var(--secondStyleColor);opacity:.15}
.feat22__card:nth-child(2):hover .feat22__card-number,
.feat22__card:nth-child(4):hover .feat22__card-number{color:var(--accent2);opacity:.15}
.feat22__card:nth-child(3):hover .feat22__card-number,
.feat22__card:nth-child(6):hover .feat22__card-number{color:var(--accent3);opacity:.15}

.feat22__card-icon{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border-radius:10px;
  font-size:1rem;
  margin-bottom:1.2rem;
  transition:transform .3s;
}
.feat22__card:hover .feat22__card-icon{transform:scale(1.1) rotate(-5deg)}
.feat22__card-icon--1{background:rgba(var(--accent-rgb),.08);color:var(--secondStyleColor)}
.feat22__card-icon--2{background:rgba(var(--accent2-rgb),.08);color:var(--accent2)}
.feat22__card-icon--3{background:rgba(var(--accent3-rgb),.08);color:var(--accent3)}

.feat22__card h3{color:var(--textColor1);margin-bottom:.6rem}
.feat22__card > p{color:var(--textSecondary);font-size:.88rem;line-height:1.75}

@media(max-width:900px){.feat22__grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.feat22__grid{grid-template-columns:1fr}.feat22__header{flex-direction:column}}

@media(prefers-reduced-motion:reduce){
  .feat22__circle,
  .feat22__card{animation:none!important;opacity:1;transform:none;transition:none}
}



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

  .rm1__head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
  }

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

  .rm1__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
  }

  .rm1__head p {
    margin: 0;
    font-size: 15px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  .rm1__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
    padding-left: 32px;
  }

  .rm1__line {
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 15%, transparent));
  }

  .rm1__item {
    position: relative;
  }

  .rm1__dot {
    position: absolute;
    left: -32px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    z-index: 1;
  }

  .rm1__dot--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
  }

  .rm1__card {
    padding: 20px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .rm1__card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

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

  .rm1__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
  }

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

  @media (max-width: 600px) {
    .rm1 { padding: 48px 0; }
    .rm1__head { margin-bottom: 36px; }
    .rm1__timeline { padding-left: 28px; }
    .rm1__dot { left: -28px; width: 14px; height: 14px; }
    .rm1__line { left: 6px; }
  }

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



  /* ===========================
     Reviews 21 — Spotlight Quote with Diamond Ratings
     Large centered review + diamond indicators + radial glow
     =========================== */

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

  /* Radial glow background */
  .rev21__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
      circle,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 0%,
      transparent 70%
    );
    pointer-events: none;
    animation: rev21-pulse 10s ease-in-out infinite;
  }

  @keyframes rev21-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
  }

  /* Header */
  .rev21__head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
    display: grid;
    gap: 10px;
  }

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

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

  /* Spotlight card */
  .rev21__spotlight {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 40px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 70%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .rev21__spotlight.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Quote icon */
  .rev21__quote-icon {
    font-size: 36px;
    color: var(--secondStyleColor);
    opacity: 0.2;
  }

  /* Quote text */
  .rev21__text {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.8;
    color: var(--textColor1);
    opacity: 0.88;
    font-style: italic;
    max-width: 580px;
  }

  /* Diamond rating */
  .rev21__diamonds {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .rev21__diamond {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    border-radius: 2px;
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    transition: background 0.3s ease, border-color 0.3s ease;
  }

  .rev21__diamond--filled {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Author */
  .rev21__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
  }

  .rev21__avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--accent2) 25%, transparent)
    );
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  .rev21__name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
  }

  .rev21__role {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.4;
  }

  /* Decorative dots */
  .rev21__dots {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }

  .rev21__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: all 0.3s ease;
  }

  .rev21__dot--active {
    background: var(--secondStyleColor);
    width: 24px;
    border-radius: 4px;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rev21__glow {
      animation: none !important;
    }
    .rev21__spotlight {
      opacity: 1;
      transform: none;
      transition: none !important;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .rev21__spotlight {
      padding: 40px 32px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .rev21__spotlight {
      padding: 32px 22px;
      gap: 20px;
    }
    .rev21__quote-icon {
      font-size: 28px;
    }
    .rev21__avatar {
      width: 44px;
      height: 44px;
      font-size: 13px;
    }
  }



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

  .gl5__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
  }

  .gl5__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .gl5__head h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
  }

  .gl5__head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

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

  .gl5__card {
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .gl5__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }

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

  .gl5__card:hover .gl5__img img {
    transform: scale(1.05);
  }

  .gl5__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--secondStyleColor);
    border-radius: 4px;
  }

  .gl5__body {
    padding: 18px 20px;
  }

  .gl5__body h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
  }

  .gl5__body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  @media (max-width: 900px) {
    .gl5__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .gl5 { padding: 48px 0; }
    .gl5__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .gl5__head { margin-bottom: 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl5__card, .gl5__img img { transition: none; }
  }



  /* ===== HOW v4 (random class variant) ===== */

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

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

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

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

  .howMainTitle_jx7p {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .howDesc_d9z1 {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

  /* Tile */
  .howTile_r0x4 {
    position: relative;
    text-align: center;
    border-radius: var(--borderRadius);
    padding: 26px 20px 24px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    overflow: hidden;
  }

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

  .howTile_r0x4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    transition: 0.25s ease;
  }

  .howTile_r0x4:hover::before {
    opacity: 1;
  }

  /* Badge */
  .howNum_b7d2 {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  /* Icon */
  .howIcon_f2m9 {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
  }

  .howIcon_f2m9 i {
    font-size: 22px;
    color: var(--secondStyleColor);
  }

  /* Titles */
  .howTitle_g4s0 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .howText_u8e1 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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



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

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

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

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



  /* ===== PARTNERS v10 — 3D perspective tilt card ===== */

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

  .pt10__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    z-index: 0;
    opacity: 0.1;
    filter: blur(6px);
  }

  .pt10 .container {
    position: relative;
    z-index: 1;
  }

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

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

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

  /* Scene */
  .pt10__scene {
    display: flex;
    justify-content: center;
    perspective: 800px;
  }

  .pt10__card {
    width: min(340px, 80vw);
    aspect-ratio: 1 / 1.1;
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
  }

  .pt10__card-face {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 30px;
    overflow: hidden;
  }

  /* Orbiting rings */
  .pt10__ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .pt10__ring span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

  .pt10__ring span:nth-child(1) {
    inset: 8%;
    animation: pt10Orbit 12s linear infinite;
  }

  .pt10__ring span:nth-child(2) {
    inset: 18%;
    animation: pt10Orbit 18s linear infinite reverse;
  }

  .pt10__ring span:nth-child(3) {
    inset: 28%;
    animation: pt10Orbit 24s linear infinite;
  }

  @keyframes pt10Orbit {
    to { transform: rotate(360deg); }
  }

  /* Logo */
  .pt10__logo-area {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt10__logo-area:hover {
    transform: scale(1.06);
  }

  .pt10__logo-area img {
    max-width: min(200px, 55%);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

  .pt10__label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt10__card {
      width: min(300px, 75vw);
    }
  }

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

    .pt10__head {
      margin-bottom: 36px;
    }

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

    .pt10__card {
      width: min(260px, 75vw);
    }

    .pt10__card-face {
      padding: 24px;
      gap: 18px;
    }

    .pt10__logo-area img {
      max-width: min(160px, 50%);
    }

    .pt10__label {
      font-size: 11px;
      padding: 5px 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt10__ring span {
      animation: none;
    }
    .pt10__card,
    .pt10__logo-area {
      transition: none;
    }
  }



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

  .pl3__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
  }

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

  .pl3__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
  }

  .pl3__head p {
    margin: 0;
    font-size: 15px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  .pl3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
  }

  .pl3__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 3vw, 32px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .pl3__card--featured {
    grid-row: span 2;
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    box-shadow: 0 0 50px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl3__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .pl3__card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }

  .pl3__desc {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .pl3__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .pl3__amount {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl3__period {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
  }

  .pl3__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pl3__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

  .pl3__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    flex-shrink: 0;
  }

  .pl3__btn {
    display: block;
    text-align: center;
    padding: 11px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
    margin-top: auto;
  }

  .pl3__btn:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl3__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

  .pl3__btn--primary:hover {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  @media (max-width: 700px) {
    .pl3__grid { grid-template-columns: 1fr; max-width: 400px; }
    .pl3__card--featured { grid-row: span 1; order: -1; }
  }

  @media (max-width: 600px) {
    .pl3 { padding: 48px 0; }
    .pl3__head { margin-bottom: 36px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl3__card, .pl3__btn { transition: none; }
  }



  /* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

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

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

  .faqSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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



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



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