:root {
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
}

/* ---- next <style> block ---- */

/* 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) {
  .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;
  }
}

/* ---- next <style> block ---- */

/* ===== HERO v1 ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bodyBG);
}

/* Фоновое изображение */
.heroBG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.55);
  transform: scale(1.1);
  z-index: 1;
}

/* Контент */
.hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Левая колонка */
.hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--textColor1);
  margin: 0 0 15px 0;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero a {
  display: inline-block;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  padding: 14px 32px;
  border-radius: var(--borderRadius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.hero a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Справа — второе изображение */
.hero > .container > img {
  width: 420px;
  height: auto;
  border-radius: var(--borderRadius);
  object-fit: contain;
}

/* ===== Адаптив ===== */
@media (max-width: 950px) {
  .hero > .container {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero > .container > img {
    width: 300px;
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero > .container > img {
    display: none;
  }
}

/* ---- next <style> block ---- */

:root {
  --scrollbarBg: rgba(255, 255, 255, 0.1);
  --itemBgColor: transparent;
}
.swiper {
  padding-bottom: 10px !important;
}

.toc .swiper-slide {
  width: fit-content;
}

.toc h2 {
  white-space: nowrap;
  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: #fff;
  background-color: rgba(17, 17, 17, 0.2);
}

.toc .swiper-wrapper {
  padding-top: 20px;
  padding-bottom: 24px;
}

.toc-swiper .swiper-scrollbar {
  background: var(--scrollbarBg);
  height: 4px;
  border-radius: 2px;
}

.toc-swiper .swiper-scrollbar-drag {
  background: var(--secondStyleColor);
  border-radius: 2px;
  width: 20%;
}

.toc.wrapper {
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.toc-swiper {
  max-width: calc(var(--maxWidthContainer) - 40px);
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

@media screen and (max-width: 750px) {
  .toc.wrapper {
    margin-left: auto;
  }
  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: 90% !important;
    margin: 0 auto;
  }
}

/* ---- next <style> block ---- */

.hiwWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.him-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
  h2,
  p {
    color: var(--textColor1);
  }
}
.hiw_image {
  border-radius: var(--borderRadius);
  width: 400px;
  height: 500px;
  img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 800px) {
  .hiwWrapper {
    flex-direction: column;
  }
  .him-left {
    width: 100%;
  }
  .hiw_image {
    margin-top: 20px;
    width: 100%;
  }
}

/* ---- next <style> block ---- */

.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;
  }
}

/* ---- next <style> block ---- */

/* ===== 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: #cfcfcf;
}

/* 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;
  background: rgba(2, 255, 57, 0.1);
  border: 1px solid rgba(2, 255, 57, 0.6);
  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: #d4d4d4;
}

/* Responsive */
@media (max-width: 900px) {
  .howSteps_l1a0 {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== TESTIMONIALS SECTION ===== */

.testimonialsSection {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.testimonialsWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.testimonialsHeader {
  max-width: 760px;
  margin: 0 auto 45px auto;
  text-align: center;
}

.testimonialsEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonialsTitle {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.testimonialsSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.testimonialsGrid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */
.testimonialCard {
  position: relative;
  border-radius: var(--borderRadius);
  padding: 26px 22px 24px 22px;
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.2s ease;
  overflow: hidden;
}

.testimonialCard::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;
  pointer-events: none;
  transition: 0.25s ease;
}

.testimonialCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.testimonialCard:hover::before {
  opacity: 1;
}

/* Quote icon */
.testimonialQuoteIcon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(2, 255, 57, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonialQuoteIcon i {
  color: var(--secondStyleColor);
  font-size: 16px;
}

/* Text + meta */
.testimonialText {
  font-size: 14px;
  line-height: 1.7;
  color: #e0e0e0;
  flex: 1;
}

.testimonialMeta {
  margin-top: 6px;
}

.testimonialName {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonialRole {
  font-size: 13px;
  color: #b0b0b0;
}

/* Responsive */
@media (max-width: 1000px) {
  .testimonialsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .testimonialsGrid {
    grid-template-columns: 1fr;
  }

  .testimonialCard {
    padding: 22px 18px;
  }
}

/* ---- next <style> block ---- */

.galeryhead {
  margin-bottom: 45px;
}
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.imageContainer {
  width: 430px;
  height: 560px;
  border-radius: var(--borderRadius);
  margin-bottom: 20px;
  img {
    border-radius: inherit;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}
.galleryItem {
  h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 800px) {
  .galleryGrid {
    display: flex;
    flex-direction: column;
  }
  .imageContainer {
    width: 100%;
    height: 330px;
  }
}

/* ---- next <style> block ---- */

.partners {
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background-color: var(--secondStyleColor);
  opacity: 0.1;
}

.partners__container {
  text-align: center;
}
.partnersHead {
  margin-bottom: 45px;
}

.partners__title {
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--textColor1);
}

.partners__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  transition: transform 0.25s ease;
  padding-bottom: 0;
  gap: 30px;
}

.partners__logo-wrapper a {
  display: flex;
  min-height: 180px;
  justify-content: center;
  align-items: center;
  flex: 1 1 30%;
  padding: 40px;
  border: 4px solid var(--secondStyleColor);
  transition: 0.3s all linear;
  img {
    height: 50%;
  }
}

.partners__logo-wrapper a:hover {
  transform: scale(1.05);
}

.partners__logo {
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
@media (max-width: 800px) {
  .partners__logo-wrapper {
    flex-direction: column;
  }
  .partners__logo-wrapper a {
    width: 100%;
  }
}

/* ---- next <style> block ---- */

.stats--dynamic-head {
  margin: 0 auto 45px auto;
}
.stats--dynamic {
  background: var(--bodyBG);
  h2,
  h2 + p {
    text-align: center;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.stat-card--glow {
  backdrop-filter: blur(20px);
  border: 1px solid var(--secondStyleColor);

  border-radius: var(--borderRadius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.stat-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stat-card__header h3 {
  color: var(--textColor1);
  margin: 0;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondStyleColor);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--secondStyleColor);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.stat-period {
  color: var(--secondStyleColor);
  font-size: 0.9rem;
}

.stat-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--secondStyleColor);
}

.stat-label {
  color: var(--textColor1);
  font-size: 0.9rem;
}

.stat-value {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--secondStyleColor);
}

.stat-suffix {
  color: var(--secondStyleColor);
  font-size: 0.9rem;
}

.players-list,
.wins-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.player-item,
.win-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.player-item:hover,
.win-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.player-rank {
  width: 24px;
  height: 24px;
  background: var(--secondStyleColor);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.player-name {
  flex: 1;
  color: var(--text-primary);
}

.player-win {
  color: var(--secondStyleColor);
  font-weight: 700;
}

.win-multiplier {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--secondStyleColor);
}

.win-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.win-amount {
  color: var(--text-primary);
  font-weight: 700;
}

.win-time {
  color: var(--secondStyleColor);
  font-size: 0.8rem;
}

@media (max-width: 800px) {
  .stats-grid {
    display: flex;
    flex-direction: column;
    width: inherit;
  }
}

/* ---- next <style> block ---- */

/* ===== 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: #cfcfcf;
}

/* 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: #e0e0e0;
}

/* Responsive */
@media (max-width: 800px) {
  .faqColsGrid {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== FOOTER ===== */

.footer {
  background: #181818;
  color: var(--textColor1);
  padding: 40px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Верхняя часть */
.footerTop {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 24px;
}

/* Бренд */
.footerBrand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footerLogo {
  color: var(--secondStyleColor);
}

.footerLogo i {
  color: var(--secondStyleColor);
  font-size: 18px;
}

.footerBrandName {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footerBrandTagline {
  font-size: 14px;
  color: #bcbcbc;
  padding-top: 10px;
}

/* Навигация и контакты */
.footerNavLabel {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  margin-bottom: 10px;
  font-weight: 600;
}

.footerNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerNav li + li {
  margin-top: 6px;
}

.footerNav a {
  font-size: 14px;
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.15s ease;
}

.footerNav a:hover {
  color: var(--secondStyleColor);
}

/* Контакты */
.footerContactLine {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 4px;
}

.footerSocial {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.footerSocial a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  font-size: 14px;
  transition: 0.15s ease;
}

.footerSocial a:hover {
  border-color: var(--secondStyleColor);
  color: var(--secondStyleColor);
}

/* Нижняя полоска */
.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: #9a9a9a;
}

.footerMeta {
  text-align: right;
}

/* Адаптив */
@media (max-width: 900px) {
  .footerTop {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .footerTop {
    grid-template-columns: 1fr;
  }

  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerMeta {
    text-align: left;
  }
}
