html,
body {
  background: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body {
  padding-top: 90px;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  transition: transform 0.35s ease, padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
  transform: translateY(0);
}
.header.scrolled {
  padding: 15px 0;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.55);
}
.header.header--hidden {
  transform: translateY(-100%);
}
.header__logo {
  margin-left: 40px;
  z-index: 2000;
}
.header__logo img {
  max-width: 80px;
  height: auto;
  display: block;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-right: 40px;
  cursor: pointer;
  z-index: 3000;
  background: transparent;
  border: none;
  padding: 0;
}
.header__burger span {
  width: 30px;
  height: 3px;
  background: #f4f1f5;
  transition: 0.4s ease;
  transform-origin: center;
  display: block;
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header__nav {
  margin-right: 40px;
}
.header__nav ul {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header__nav ul li {
  list-style: none;
  white-space: nowrap;
}
.header__nav ul li a {
  text-decoration: none;
  color: #f4f1f5;
  font-size: clamp(10px, 1.2vw, 14px);
  font-family: russoone;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 215, 120, 0.25), 0 0 20px rgba(255, 170, 60, 0.35), 0 0 40px rgba(255, 120, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.75);
}
.header__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: #ffc400;
  transition: transform 0.35s ease;
}
.header__nav ul li a:hover, .header__nav ul li a:focus, .header__nav ul li a:active {
  color: #ffc400;
}
.header__nav ul li a:hover::after, .header__nav ul li a:focus::after, .header__nav ul li a:active::after {
  transform: translateX(-50%) scaleX(1);
}
.header__nav ul li:last-child a {
  padding: 14px 24px;
  background: linear-gradient(180deg, #ffcc00 0%, #ffb300 40%, #ff8f00 100%);
  color: #f4f1f5;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease;
}
.header__nav ul li:last-child a::after {
  display: none;
}
.header__nav ul li:last-child a:hover {
  transform: scale(1.05);
}
.header__nav ul li:last-child a:focus, .header__nav ul li:last-child a:active {
  transform: scale(1.01);
}
.header__nav--desktop {
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1400;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(92vw, 520px);
  max-height: calc(100vh - 32px);
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(208, 255, 0, 0.14), inset 0 0 20px rgba(255, 255, 255, 0.03);
  transform: translate(-50%, -50%) scale(0.82);
  transform-origin: center;
  clip-path: circle(0 at 50% 50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2000;
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.18, 1), transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.active {
  clip-path: circle(150% at 50% 50%);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.mobile-menu li {
  list-style: none;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #f4f1f5;
  font-size: clamp(20px, 4vw, 28px);
  font-family: russoone;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}
.mobile-menu li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: linear-gradient(180deg, rgba(255, 155, 61, 0.7960784314) 0%, #ff6a00 100%);
  transition: transform 0.35s ease;
}
.mobile-menu li a:hover, .mobile-menu li a:focus, .mobile-menu li a:active {
  color: #ff9b3d;
}
.mobile-menu li:last-child a {
  padding: 14px 24px;
  background: linear-gradient(180deg, #ffcc00 0%, #ffb300 40%, #ff8f00 100%);
  color: #f4f1f5;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 215, 120, 0.25), 0 0 20px rgba(255, 170, 60, 0.35), 0 0 40px rgba(255, 120, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.75);
}
.mobile-menu li:last-child a::after {
  display: none;
}
.mobile-menu li:last-child a:hover, .mobile-menu li:last-child a:focus, .mobile-menu li:last-child a:active {
  color: #f4f1f5;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
}
.mobile-menu.active li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.16s;
}
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.24s;
}
.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.32s;
}
.mobile-menu.active li:nth-child(5) {
  transition-delay: 0.4s;
}
.mobile-menu.active li:nth-child(6) {
  transition-delay: 0.48s;
}
.mobile-menu.active li:nth-child(7) {
  transition-delay: 0.56s;
}

@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
  .header__nav--desktop {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 76px;
  }
  .header__logo {
    margin-left: 20px;
  }
  .header__logo img {
    max-width: 100px;
  }
  .header__burger {
    margin-right: 20px;
  }
  .mobile-menu {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 28px 18px;
    border-radius: 20px;
  }
  .mobile-menu ul {
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .header__logo img {
    max-width: 80px;
  }
  .mobile-menu {
    padding: 24px 16px;
  }
  .mobile-menu li a {
    font-size: clamp(18px, 5vw, 24px);
  }
  .mobile-menu li:last-child a {
    width: 100%;
    max-width: 260px;
    padding: 14px 18px;
  }
}
@font-face {
  font-family: inter;
  src: url(../fonts/Inter_18pt-Medium.ttf);
}
@font-face {
  font-family: russoone;
  src: url(../fonts/RussoOne-Regular.ttf);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body ::-moz-selection {
  background: #ffb347;
  color: #000;
  text-shadow: none;
}
body ::selection {
  background: #ffb347;
  color: #000;
  text-shadow: none;
}
body ::-moz-selection {
  background: #ffb347;
  color: #000;
  text-shadow: none;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@font-face {
  font-family: inter;
  src: url(../fonts/Inter_18pt-Medium.ttf);
}
@font-face {
  font-family: oswald;
  src: url(../fonts/Oswald-Medium.ttf);
}
@font-face {
  font-family: russoone;
  src: url(../fonts/RussoOne-Regular.ttf);
}
@font-face {
  font-family: CutiveMono;
  src: url(../fonts/CutiveMono-Regular.ttf);
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 20px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0.88) 100%), radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.78) 100%);
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1720px;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.hero-container img {
  width: 35%;
  max-width: 520px;
  min-width: 260px;
  height: auto;
  display: inline;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
  filter: brightness(0.4) contrast(1.1);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.btn {
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-family: russoone;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}
.btn:hover::before {
  opacity: 1;
}
.btn.btn-primary {
  color: #f4f1f5;
  background: linear-gradient(180deg, #ffcc00 0%, #ffb300 40%, #ff8f00 100%);
  border-color: rgba(255, 210, 130, 0.35);
  text-shadow: 0 0 8px rgba(255, 215, 120, 0.25), 0 0 20px rgba(255, 170, 60, 0.35), 0 0 40px rgba(255, 120, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.75);
}
.btn.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 210, 130, 0.18), 0 14px 34px rgba(201, 124, 34, 0.42), 0 0 34px rgba(255, 140, 20, 0.28);
}
.btn.btn-secondary {
  color: #caa22f;
  background: rgba(20, 16, 12, 0.42);
  border-color: rgba(202, 162, 47, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 220, 170, 0.05), 0 10px 24px rgba(0, 0, 0, 0.35);
}
.btn.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(202, 162, 47, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 220, 170, 0.08), 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 155, 61, 0.14);
}

@media (max-width: 1400px) {
  .hero-container {
    margin-right: 40px;
    margin-left: 40px;
    gap: 32px;
  }
  .hero h1 {
    font-size: 112px;
  }
  .hero p:first-of-type {
    max-width: 620px;
    font-size: 22px;
  }
  .btn {
    padding: 0 28px;
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding: 20px 20px 72px;
  }
  .hero-container {
    padding: 0 4%;
    gap: 24px;
  }
  .hero-container img {
    width: 42%;
    max-width: 460px;
    min-width: 240px;
  }
  .btn {
    min-height: 54px;
    padding: 0 28px;
    font-size: 11px;
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: 100svh;
    padding: 20px 18px 64px;
  }
  .hero-container {
    padding: 0 4%;
    gap: 22px;
  }
  .hero-container img {
    width: 50%;
    max-width: 400px;
    min-width: 220px;
  }
  .hero__video {
    -o-object-position: center center;
       object-position: center center;
  }
  .btn {
    min-height: 52px;
    padding: 0 24px;
    font-size: 11px;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 18px 16px 56px;
    align-items: center;
    justify-content: center;
  }
  .hero-container {
    padding: 0;
    gap: 20px;
  }
  .hero-container img {
    width: 62%;
    max-width: 340px;
    min-width: 200px;
  }
  .hero__video {
    -o-object-position: center center;
       object-position: center center;
  }
  .btn {
    width: auto;
    max-width: 100%;
    min-height: 52px;
    padding: 0 22px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 16px 14px 48px;
  }
  .hero-container {
    gap: 18px;
  }
  .hero-container img {
    width: 72%;
    max-width: 300px;
    min-width: 180px;
  }
  .btn {
    min-height: 50px;
    padding: 0 20px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 420px) {
  .hero {
    padding: 16px 12px 42px;
  }
  .hero-container {
    gap: 16px;
  }
  .hero-container img {
    width: 82%;
    max-width: 260px;
    min-width: 160px;
  }
  .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 9px;
    letter-spacing: 0.4px;
  }
}
.directions {
  width: 100%;
  padding: 96px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.directions-container {
  max-width: 1720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.directions .general-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
}
.directions .general-title h2 {
  color: #f4f1f5;
  font-family: russoone;
  letter-spacing: 1.5px;
  line-height: 1;
  font-size: 48px;
  text-align: left;
}
.directions-elements {
  width: 100%;
  gap: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.directions-elements__item {
  position: relative;
  width: 340px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(202, 162, 47, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 140, 0, 0.15);
  transition: all 0.35s ease;
}
.directions-elements__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 200, 80, 0.25) 0%, rgba(255, 140, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.directions-elements__item:hover {
  transform: translateY(-6px) scale(1.03);
  border: 1px solid #caa22f;
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.4), 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 140, 0, 0.35);
}
.directions-elements__item:hover::before {
  opacity: 1;
}
.directions-elements__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.directions-elements__item:hover h4 {
  color: #caa22f;
}
.directions-elements__item h4 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: russoone;
  font-size: 28px;
  text-align: center;
  letter-spacing: 1px;
  color: #f4f1f5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
.directions-elements .directions-elements__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.directions-elements .directions-elements__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
  transition: all 0.4s ease;
}
.directions-elements .directions-elements__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}

@media (max-width: 1540px) {
  .directions {
    padding: 88px 24px;
  }
  .directions-container {
    gap: 40px;
  }
  .directions .general-title h2 {
    font-size: 42px;
  }
  .directions-elements {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
  }
  .directions-elements__item {
    width: 100%;
    max-width: 300px;
    height: 330px;
  }
  .directions-elements__item h4 {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .directions {
    padding: 80px 20px;
  }
  .directions-container {
    gap: 36px;
  }
  .directions .general-title h2 {
    font-size: 38px;
  }
  .directions-elements {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 22px;
  }
  .directions-elements__item {
    width: 100%;
    max-width: 100%;
    height: 320px;
    padding: 14px;
  }
  .directions-elements__item h4 {
    font-size: 22px;
    line-height: 1.15;
  }
}
@media (max-width: 992px) {
  .directions {
    padding: 72px 18px;
  }
  .directions-container {
    gap: 32px;
  }
  .directions .general-title h2 {
    font-size: 34px;
  }
  .directions-elements {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .directions-elements__item {
    height: 300px;
    border-radius: 16px;
  }
  .directions-elements__item h4 {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 768px) {
  .directions {
    padding: 64px 16px;
  }
  .directions-container {
    gap: 28px;
  }
  .directions .general-title {
    width: 100%;
  }
  .directions .general-title h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .directions-elements {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .directions-elements__item {
    height: 240px;
    padding: 12px;
  }
  .directions-elements__item:hover {
    transform: translateY(-4px) scale(1.02);
  }
  .directions-elements__item h4 {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 576px) {
  .directions {
    padding: 56px 14px;
  }
  .directions-container {
    gap: 24px;
  }
  .directions .general-title h2 {
    font-size: 26px;
  }
  .directions-elements {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .directions-elements__item {
    height: 220px;
    border-radius: 14px;
    padding: 12px;
  }
  .directions-elements__item h4 {
    font-size: 18px;
    line-height: 1.15;
  }
}
@media (max-width: 420px) {
  .directions {
    padding: 48px 12px;
  }
  .directions-container {
    gap: 20px;
  }
  .directions .general-title h2 {
    font-size: 22px;
    letter-spacing: 0.8px;
  }
  .directions-elements {
    gap: 12px;
  }
  .directions-elements__item {
    height: 200px;
    padding: 10px;
  }
  .directions-elements__item h4 {
    font-size: 16px;
    letter-spacing: 0.4px;
  }
}
.about {
  width: 100%;
  padding: 96px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-container {
  max-width: 1720px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}
.about .general-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 32px;
}
.about .general-title h2 {
  color: #f4f1f5;
  font-family: russoone;
  letter-spacing: 1.5px;
  line-height: 1;
  font-size: 48px;
}
.about .general-title h3 {
  color: #caa22f;
  font-size: 64px;
  line-height: 1;
  font-family: russoone;
  letter-spacing: 2px;
  max-width: 730px;
}
.about-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 16px;
  max-width: 720px;
  order: 2;
}
.about-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  text-align: justify;
  font-family: inter;
  line-height: 1.14;
  letter-spacing: 0.5px;
}
.about-text p span {
  font-weight: 700;
}
.about-image {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 720px;
  align-self: center;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(202, 162, 47, 0.6);
  order: 1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55), 0 0 22px rgba(255, 140, 0, 0.12);
  transition: 0.35s ease;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 200, 80, 0.12) 0%, rgba(255, 140, 0, 0.04) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.about-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 140, 0, 0.22);
}
.about-image:hover::before {
  opacity: 1;
}
.about-image:hover img {
  transform: scale(1.04);
}
.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: contrast(1.05) brightness(0.93) saturate(0.92);
}

@media (max-width: 1400px) {
  .about {
    padding: 88px 24px;
  }
  .about-container {
    gap: 40px;
  }
  .about .general-title {
    gap: 28px;
  }
  .about .general-title h2 {
    font-size: 42px;
  }
  .about .general-title h3 {
    font-size: 56px;
    max-width: 640px;
  }
  .about-text {
    max-width: 640px;
  }
  .about-text p {
    font-size: 22px;
  }
  .about-image {
    max-width: 620px;
    height: 620px;
  }
}
@media (max-width: 1200px) {
  .about {
    padding: 80px 20px;
  }
  .about-container {
    gap: 32px;
  }
  .about .general-title {
    gap: 24px;
  }
  .about .general-title h2 {
    font-size: 38px;
  }
  .about .general-title h3 {
    font-size: 48px;
    max-width: 560px;
  }
  .about-text {
    max-width: 560px;
    gap: 14px;
  }
  .about-text p {
    font-size: 18px;
    text-align: justify;
    line-height: 1.3;
  }
  .about-image {
    max-width: 540px;
    height: 540px;
  }
}
@media (max-width: 992px) {
  .about {
    padding: 72px 18px;
  }
  .about-container {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .about .general-title {
    gap: 20px;
  }
  .about .general-title h2 {
    font-size: 34px;
  }
  .about .general-title h3 {
    font-size: 40px;
    max-width: 100%;
  }
  .about-text {
    max-width: 100%;
    order: 2;
    gap: 14px;
  }
  .about-text p {
    font-size: 17px;
    line-height: 1.4;
  }
  .about-image {
    max-width: 100%;
    width: 100%;
    height: 520px;
    order: 1;
    align-self: stretch;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 64px 16px;
  }
  .about-container {
    gap: 24px;
  }
  .about .general-title {
    gap: 18px;
  }
  .about .general-title h2 {
    font-size: 30px;
  }
  .about .general-title h3 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 1px;
  }
  .about-text {
    gap: 12px;
  }
  .about-text p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
  .about-image {
    height: 420px;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 56px 14px;
  }
  .about-container {
    gap: 20px;
  }
  .about .general-title {
    gap: 16px;
  }
  .about .general-title h2 {
    font-size: 26px;
  }
  .about .general-title h3 {
    font-size: 28px;
    line-height: 1.08;
  }
  .about-text {
    gap: 10px;
  }
  .about-text p {
    font-size: 14px;
    line-height: 1.45;
  }
  .about-image {
    height: 320px;
    border-radius: 14px;
  }
}
@media (max-width: 420px) {
  .about {
    padding: 48px 12px;
  }
  .about-container {
    gap: 18px;
  }
  .about .general-title {
    gap: 14px;
  }
  .about .general-title h2 {
    font-size: 22px;
  }
  .about .general-title h3 {
    font-size: 24px;
    letter-spacing: 0.6px;
  }
  .about-text {
    gap: 10px;
  }
  .about-text p {
    font-size: 13px;
    line-height: 1.4;
  }
  .about-image {
    height: 260px;
    border-radius: 12px;
  }
}
.coach {
  width: 100%;
  padding: 96px 32px;
  position: relative;
}
.coach-container {
  max-width: 1720px;
  margin: 0 auto;
}
.coach .general-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 32px;
}
.coach .general-title h2 {
  color: #f4f1f5;
  font-family: russoone;
  letter-spacing: 1.5px;
  line-height: 1;
  font-size: 48px;
}
.coach .general-title h3 {
  color: #caa22f;
  font-size: 64px;
  line-height: 1;
  font-family: russoone;
  letter-spacing: 2px;
  max-width: 730px;
}
.coach-slider {
  margin-top: 50px;
  overflow: hidden;
  padding: 8px 6px 28px;
}
.coach .swiper-wrapper {
  align-items: stretch;
}
.coach .swiper-slide {
  height: auto;
  box-sizing: border-box;
  padding: 8px 6px 12px;
}
.coach-slider__nav {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.coach-slider__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(202, 162, 47, 0.7);
  background: rgba(0, 0, 0, 0.75);
  color: #caa22f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 140, 0, 0.12);
}
.coach-slider__btn svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.coach-slider__btn path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coach-slider__btn:hover {
  transform: translateY(-3px);
  border-color: #caa22f;
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.35), 0 14px 28px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 140, 0, 0.24);
}
.coach-card {
  position: relative;
  width: 100%;
  min-height: 460px;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(202, 162, 47, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 140, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.coach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 200, 80, 0.18) 0%, rgba(255, 140, 0, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.35), 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 40px rgba(255, 140, 0, 0.28);
}
.coach-card:hover::before {
  opacity: 1;
}
.coach-card:hover .coach-card__image img {
  transform: scale(1.04);
  filter: brightness(0.92);
}
.coach-card:hover .coach-card__content h4 {
  color: #caa22f;
}
.coach-card__image {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.coach-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}
.coach-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.coach-card__content {
  position: relative;
  z-index: 2;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #000;
}
.coach-card__content h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  font-family: russoone;
  color: #f4f1f5;
  transition: color 0.35s ease;
}
.coach-card__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.coach-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.coach-modal.active {
  display: block;
}
.coach-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}
.coach-modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  background: #0a0a0a;
  border: 1px solid rgba(202, 162, 47, 0.65);
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(255, 140, 0, 0.18);
  overflow: hidden;
}
.coach-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(202, 162, 47, 0.65);
  background: rgba(0, 0, 0, 0.75);
  color: #caa22f;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}
.coach-modal__close:hover {
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}
.coach-modal__scroll {
  overflow-y: auto;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 420px 1fr;
}
.coach-modal__image {
  min-height: 100%;
  background: #050505;
}
.coach-modal__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.coach-modal__content {
  padding: 60px 42px 42px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.coach-modal__badge {
  align-self: flex-start;
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 10px;
  border: 1px solid rgba(202, 162, 47, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
}
.coach-modal__title {
  font-size: 42px;
  line-height: 1.05;
  color: #f4f1f5;
  font-family: russoone;
  margin: 0;
}
.coach-modal__role {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.coach-modal__achievements h4 {
  margin: 0 0 16px;
  font-size: 20px;
  color: #caa22f;
}
.coach-modal__achievements ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coach-modal__achievements ul li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.coach-modal__achievements ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #caa22f;
  box-shadow: 0 0 12px rgba(255, 170, 0, 0.4);
}
.coach-modal__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.coach-modal__socials a {
  min-width: 120px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 47, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4f1f5;
  text-decoration: none;
  background: rgba(255, 140, 0, 0.05);
  transition: 0.3s ease;
}
.coach-modal__socials a:hover {
  color: #000;
  background: #caa22f;
  box-shadow: 0 0 24px rgba(255, 170, 0, 0.22);
}
.coach-modal__btn {
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 220px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: #caa22f;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.coach-modal__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255, 170, 0, 0.22), 0 0 24px rgba(255, 170, 0, 0.18);
}

@media (max-width: 1400px) {
  .coach {
    padding: 88px 24px;
  }
  .coach .general-title {
    gap: 28px;
  }
  .coach .general-title h2 {
    font-size: 42px;
  }
  .coach .general-title h3 {
    font-size: 56px;
    max-width: 640px;
  }
  .coach-slider {
    margin-top: 42px;
  }
  .coach-card {
    min-height: 430px;
  }
  .coach-card__image {
    height: 310px;
  }
  .coach-card__content {
    padding: 20px 18px 22px;
  }
  .coach-card__content h4 {
    font-size: 24px;
  }
  .coach-card__content p {
    font-size: 15px;
  }
  .coach-modal__body {
    max-width: 920px;
  }
  .coach-modal__scroll {
    grid-template-columns: 380px 1fr;
  }
  .coach-modal__content {
    padding: 52px 36px 36px;
  }
  .coach-modal__title {
    font-size: 38px;
  }
}
@media (max-width: 1200px) {
  .coach {
    padding: 80px 20px;
  }
  .coach .general-title {
    gap: 24px;
  }
  .coach .general-title h2 {
    font-size: 38px;
  }
  .coach .general-title h3 {
    font-size: 48px;
    max-width: 560px;
  }
  .coach-slider {
    margin-top: 36px;
    padding: 8px 4px 24px;
  }
  .coach-slider__btn {
    width: 50px;
    height: 50px;
  }
  .coach-card {
    min-height: 400px;
    border-radius: 20px;
  }
  .coach-card__image {
    height: 280px;
  }
  .coach-card__content {
    padding: 18px 16px 20px;
    gap: 6px;
  }
  .coach-card__content h4 {
    font-size: 22px;
  }
  .coach-card__content p {
    font-size: 14px;
    line-height: 1.4;
  }
  .coach-modal__body {
    max-width: 860px;
  }
  .coach-modal__scroll {
    grid-template-columns: 340px 1fr;
  }
  .coach-modal__content {
    padding: 48px 30px 30px;
    gap: 16px;
  }
  .coach-modal__title {
    font-size: 34px;
  }
  .coach-modal__role {
    font-size: 17px;
  }
  .coach-modal__achievements h4 {
    font-size: 18px;
  }
  .coach-modal__achievements ul {
    gap: 12px;
  }
  .coach-modal__achievements ul li {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .coach {
    padding: 72px 18px;
  }
  .coach .general-title {
    gap: 20px;
  }
  .coach .general-title h2 {
    font-size: 34px;
  }
  .coach .general-title h3 {
    font-size: 40px;
    max-width: 100%;
  }
  .coach-slider {
    margin-top: 32px;
  }
  .coach-slider__nav {
    margin-top: 6px;
  }
  .coach-slider__btn {
    width: 48px;
    height: 48px;
  }
  .coach-slider__btn svg {
    width: 20px;
    height: 20px;
  }
  .coach-card {
    min-height: 380px;
  }
  .coach-card__image {
    height: 260px;
  }
  .coach-card__content {
    padding: 16px 16px 18px;
  }
  .coach-card__content h4 {
    font-size: 20px;
  }
  .coach-card__content p {
    font-size: 14px;
  }
  .coach-modal__body {
    width: calc(100% - 32px);
    max-width: 760px;
  }
  .coach-modal__scroll {
    grid-template-columns: 1fr;
  }
  .coach-modal__image {
    height: 340px;
    min-height: unset;
  }
  .coach-modal__content {
    padding: 28px 24px 24px;
  }
  .coach-modal__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .coach-modal__title {
    font-size: 30px;
  }
  .coach-modal__role {
    font-size: 16px;
  }
  .coach-modal__achievements h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .coach-modal__achievements ul li {
    font-size: 15px;
    line-height: 1.5;
  }
  .coach-modal__socials {
    gap: 10px;
  }
  .coach-modal__socials a {
    min-width: 110px;
    height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }
  .coach-modal__btn {
    min-width: 200px;
    height: 52px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .coach {
    padding: 64px 16px;
  }
  .coach .general-title {
    gap: 18px;
  }
  .coach .general-title h2 {
    font-size: 30px;
  }
  .coach .general-title h3 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 1px;
  }
  .coach-slider {
    margin-top: 28px;
    padding: 6px 2px 20px;
  }
  .coach .swiper-slide {
    padding: 6px 4px 10px;
  }
  .coach-slider__nav {
    margin-top: 2px;
    gap: 10px;
  }
  .coach-slider__btn {
    width: 44px;
    height: 44px;
  }
  .coach-slider__btn svg {
    width: 18px;
    height: 18px;
  }
  .coach-card {
    min-height: 340px;
    border-radius: 18px;
  }
  .coach-card:hover {
    transform: translateY(-4px);
  }
  .coach-card__image {
    height: 220px;
  }
  .coach-card__content {
    padding: 14px 14px 16px;
    gap: 6px;
  }
  .coach-card__content h4 {
    font-size: 17px;
    line-height: 1.15;
  }
  .coach-card__content p {
    font-size: 14px;
    line-height: 1.45;
  }
  .coach-modal__body {
    width: calc(100% - 24px);
    max-height: 88vh;
    border-radius: 22px;
  }
  .coach-modal__scroll {
    max-height: 88vh;
  }
  .coach-modal__image {
    height: 260px;
  }
  .coach-modal__content {
    padding: 24px 18px 20px;
    gap: 14px;
  }
  .coach-modal__badge {
    font-size: 10px;
    padding: 6px 10px;
  }
  .coach-modal__title {
    font-size: 26px;
    line-height: 1.08;
  }
  .coach-modal__role {
    font-size: 15px;
    line-height: 1.45;
  }
  .coach-modal__achievements h4 {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .coach-modal__achievements ul {
    gap: 10px;
  }
  .coach-modal__achievements ul li {
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.45;
  }
  .coach-modal__achievements ul li::before {
    width: 7px;
    height: 7px;
    top: 8px;
  }
  .coach-modal__socials {
    gap: 8px;
  }
  .coach-modal__socials a {
    min-width: calc(50% - 4px);
    flex: 1 1 calc(50% - 4px);
    height: 40px;
    font-size: 13px;
  }
  .coach-modal__btn {
    width: 100%;
    min-width: 100%;
    height: 50px;
    font-size: 14px;
  }
  .coach-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .coach {
    padding: 56px 14px;
  }
  .coach .general-title {
    gap: 16px;
  }
  .coach .general-title h2 {
    font-size: 26px;
  }
  .coach .general-title h3 {
    font-size: 28px;
    line-height: 1.08;
  }
  .coach-slider {
    margin-top: 24px;
  }
  .coach-card {
    min-height: 320px;
    border-radius: 16px;
  }
  .coach-card__image {
    height: 200px;
  }
  .coach-card__content {
    padding: 14px 12px 14px;
  }
  .coach-card__content h4 {
    font-size: 18px;
  }
  .coach-card__content p {
    font-size: 13px;
  }
  .coach-modal__body {
    width: calc(100% - 20px);
    border-radius: 18px;
  }
  .coach-modal__image {
    height: 220px;
  }
  .coach-modal__content {
    padding: 20px 16px 18px;
  }
  .coach-modal__title {
    font-size: 24px;
  }
  .coach-modal__role {
    font-size: 14px;
  }
  .coach-modal__achievements h4 {
    font-size: 16px;
  }
  .coach-modal__achievements ul li {
    font-size: 13px;
    line-height: 1.4;
  }
  .coach-modal__socials {
    flex-direction: column;
  }
  .coach-modal__socials a {
    width: 100%;
    min-width: 100%;
    height: 40px;
    font-size: 13px;
  }
  .coach-modal__btn {
    height: 48px;
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .coach {
    padding: 48px 12px;
  }
  .coach .general-title {
    gap: 14px;
  }
  .coach .general-title h2 {
    font-size: 22px;
  }
  .coach .general-title h3 {
    font-size: 24px;
    letter-spacing: 0.6px;
  }
  .coach-slider {
    margin-top: 20px;
    padding-bottom: 16px;
  }
  .coach-slider__nav {
    gap: 8px;
  }
  .coach-slider__btn {
    width: 40px;
    height: 40px;
  }
  .coach-slider__btn svg {
    width: 16px;
    height: 16px;
  }
  .coach-card {
    min-height: 300px;
  }
  .coach-card__image {
    height: 185px;
  }
  .coach-card__content {
    padding: 12px;
  }
  .coach-card__content h4 {
    font-size: 16px;
  }
  .coach-card__content p {
    font-size: 13px;
    line-height: 1.4;
  }
  .coach-modal__body {
    width: calc(100% - 16px);
    border-radius: 16px;
  }
  .coach-modal__image {
    height: 200px;
  }
  .coach-modal__content {
    padding: 18px 14px 16px;
    gap: 12px;
  }
  .coach-modal__badge {
    font-size: 9px;
    padding: 5px 8px;
  }
  .coach-modal__title {
    font-size: 22px;
  }
  .coach-modal__role {
    font-size: 13px;
  }
  .coach-modal__achievements h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .coach-modal__achievements ul {
    gap: 8px;
  }
  .coach-modal__achievements ul li {
    font-size: 13px;
    padding-left: 16px;
  }
  .coach-modal__achievements ul li::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
  .coach-modal__close {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  .coach-modal__btn {
    height: 46px;
    font-size: 13px;
  }
}
.branches {
  width: 100%;
  padding: 96px 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.branches::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 170, 40, 0.08) 0%, transparent 35%), radial-gradient(circle at 85% 75%, rgba(255, 120, 0, 0.08) 0%, transparent 35%);
  pointer-events: none;
}
.branches-container {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.branches .general-title {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
  gap: 24px;
}
.branches .general-title h2 {
  color: #f4f1f5;
  font-family: russoone;
  letter-spacing: 1.5px;
  line-height: 1;
  font-size: 48px;
}
.branches .general-title h3 {
  color: #caa22f;
  font-size: 64px;
  line-height: 1;
  font-family: russoone;
  letter-spacing: 2px;
  max-width: 950px;
}
.branches-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: end;
}
.branches-tabs__btn {
  min-width: 220px;
  height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 47, 0.55);
  background: rgba(0, 0, 0, 0.55);
  color: #f4f1f5;
  font-family: russoone;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 220, 170, 0.03), 0 10px 24px rgba(0, 0, 0, 0.35);
}
.branches-tabs__btn:hover {
  transform: translateY(-3px);
  border-color: #caa22f;
  color: #caa22f;
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.22), 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 155, 61, 0.14);
}
.branches-tabs__btn.active {
  color: #000;
  background: linear-gradient(180deg, #ffcc00 0%, #ffb300 40%, #ff8f00 100%);
  border-color: rgba(255, 210, 130, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 210, 130, 0.18), 0 14px 34px rgba(201, 124, 34, 0.32), 0 0 34px rgba(255, 140, 20, 0.2);
}
.branches-content {
  position: relative;
}
.branches-pane {
  display: none;
  animation: branchFade 0.45s ease;
}
.branches-pane.active {
  display: block;
}
.branches-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(202, 162, 47, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 140, 0, 0.12);
}
.branches-card__content {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(180deg, rgba(255, 160, 40, 0.04) 0%, rgba(255, 120, 0, 0.01) 100%), #050505;
}
.branches-card__label {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 47, 0.4);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: russoone;
}
.branches-card h4 {
  color: #f4f1f5;
  font-family: russoone;
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: 1.5px;
}
.branches-card__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.branches-card__item {
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(202, 162, 47, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 20px rgba(0, 0, 0, 0.22);
}
.branches-card__item span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  font-family: russoone;
}
.branches-card__item p,
.branches-card__item a {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #f4f1f5;
  text-decoration: none;
}
.branches-card__item a:hover {
  color: #caa22f;
}
.branches-card__text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}
.branches-card__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.branches-card__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #000;
}
.branches-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, transparent 30%), linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
}
.branches-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.78) contrast(1.05);
}
.branches-card:hover .branches-card__image img {
  transform: scale(1.04);
  filter: brightness(0.84) contrast(1.08);
}

@keyframes branchFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1400px) {
  .branches {
    padding: 88px 24px;
  }
  .branches-container {
    gap: 38px;
  }
  .branches .general-title {
    gap: 22px;
  }
  .branches .general-title h2 {
    font-size: 42px;
  }
  .branches .general-title h3 {
    font-size: 56px;
    max-width: 820px;
  }
  .branches-tabs {
    gap: 14px;
  }
  .branches-tabs__btn {
    min-width: 200px;
    height: 60px;
    font-size: 15px;
  }
  .branches-card {
    grid-template-columns: 1fr 0.9fr;
  }
  .branches-card__content {
    padding: 36px 32px;
    gap: 22px;
  }
  .branches-card h4 {
    font-size: 48px;
  }
  .branches-card__item p,
  .branches-card__item a {
    font-size: 17px;
  }
  .branches-card__text {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .branches {
    padding: 80px 20px;
  }
  .branches-container {
    gap: 34px;
  }
  .branches .general-title {
    gap: 20px;
  }
  .branches .general-title h2 {
    font-size: 38px;
  }
  .branches .general-title h3 {
    font-size: 48px;
    max-width: 700px;
  }
  .branches-tabs {
    gap: 12px;
  }
  .branches-tabs__btn {
    min-width: 180px;
    height: 56px;
    padding: 0 22px;
    font-size: 14px;
  }
  .branches-card {
    grid-template-columns: 1fr 0.85fr;
    border-radius: 24px;
  }
  .branches-card__content {
    padding: 32px 28px;
    gap: 20px;
  }
  .branches-card h4 {
    font-size: 42px;
  }
  .branches-card__info {
    gap: 14px;
  }
  .branches-card__item {
    padding: 16px;
  }
  .branches-card__item p,
  .branches-card__item a {
    font-size: 16px;
    line-height: 1.35;
  }
  .branches-card__text {
    font-size: 17px;
    line-height: 1.5;
  }
}
@media (max-width: 992px) {
  .branches {
    padding: 72px 18px;
  }
  .branches-container {
    gap: 30px;
  }
  .branches .general-title {
    align-items: start;
    text-align: left;
    gap: 18px;
  }
  .branches .general-title h2 {
    font-size: 34px;
  }
  .branches .general-title h3 {
    font-size: 40px;
    max-width: 100%;
  }
  .branches-tabs {
    justify-content: flex-start;
    gap: 10px;
  }
  .branches-tabs__btn {
    min-width: 170px;
    height: 52px;
    font-size: 13px;
    letter-spacing: 0.8px;
  }
  .branches-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .branches-card__content {
    order: 2;
    padding: 28px 24px;
    gap: 18px;
  }
  .branches-card__image {
    order: 1;
    min-height: unset;
    height: 360px;
  }
  .branches-card h4 {
    font-size: 36px;
  }
  .branches-card__info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .branches-card__item p,
  .branches-card__item a {
    font-size: 15px;
  }
  .branches-card__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .branches {
    padding: 64px 16px;
  }
  .branches-container {
    gap: 26px;
  }
  .branches .general-title {
    gap: 18px;
  }
  .branches .general-title h2 {
    font-size: 30px;
  }
  .branches .general-title h3 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 1px;
  }
  .branches-tabs {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .branches-tabs__btn {
    width: 100%;
    min-width: 100%;
    height: 50px;
    padding: 0 18px;
    font-size: 13px;
  }
  .branches-card {
    border-radius: 18px;
  }
  .branches-card__content {
    padding: 22px 18px;
    gap: 16px;
  }
  .branches-card__label {
    padding: 7px 12px;
    font-size: 11px;
  }
  .branches-card h4 {
    font-size: 30px;
    line-height: 1;
  }
  .branches-card__image {
    height: 280px;
  }
  .branches-card__info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .branches-card__item {
    padding: 14px;
    border-radius: 14px;
  }
  .branches-card__item span {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .branches-card__item p,
  .branches-card__item a {
    font-size: 14px;
    line-height: 1.45;
  }
  .branches-card__text {
    font-size: 15px;
    line-height: 1.5;
  }
  .branches-card__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .branches-card__actions .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .branches {
    padding: 56px 14px;
  }
  .branches-container {
    gap: 22px;
  }
  .branches .general-title {
    gap: 16px;
  }
  .branches .general-title h2 {
    font-size: 26px;
  }
  .branches .general-title h3 {
    font-size: 28px;
    line-height: 1.08;
  }
  .branches-tabs__btn {
    height: 48px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }
  .branches-card {
    border-radius: 16px;
  }
  .branches-card__content {
    padding: 18px 14px;
    gap: 14px;
  }
  .branches-card__image {
    height: 220px;
  }
  .branches-card h4 {
    font-size: 26px;
  }
  .branches-card__label {
    font-size: 10px;
    padding: 6px 10px;
  }
  .branches-card__item {
    padding: 12px;
  }
  .branches-card__item p,
  .branches-card__item a {
    font-size: 13px;
  }
  .branches-card__text {
    font-size: 14px;
    line-height: 1.45;
  }
}
@media (max-width: 420px) {
  .branches {
    padding: 48px 12px;
  }
  .branches-container {
    gap: 20px;
  }
  .branches .general-title {
    gap: 14px;
  }
  .branches .general-title h2 {
    font-size: 22px;
  }
  .branches .general-title h3 {
    font-size: 24px;
    letter-spacing: 0.6px;
  }
  .branches-tabs__btn {
    height: 46px;
    padding: 0 14px;
    font-size: 11px;
  }
  .branches-card {
    border-radius: 14px;
  }
  .branches-card__content {
    padding: 16px 12px;
    gap: 12px;
  }
  .branches-card__image {
    height: 190px;
  }
  .branches-card h4 {
    font-size: 22px;
  }
  .branches-card__item {
    padding: 10px;
    border-radius: 12px;
  }
  .branches-card__item span {
    font-size: 10px;
  }
  .branches-card__item p,
  .branches-card__item a {
    font-size: 13px;
    line-height: 1.4;
  }
  .branches-card__text {
    font-size: 13px;
    line-height: 1.4;
  }
}
.reviews {
  width: 100%;
  padding: 96px 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(255, 170, 40, 0.08) 0%, transparent 35%), radial-gradient(circle at 85% 80%, rgba(255, 120, 0, 0.08) 0%, transparent 35%);
  pointer-events: none;
}
.reviews-container {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.reviews .general-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.reviews .general-title h2 {
  color: #f4f1f5;
  font-family: russoone;
  letter-spacing: 1.5px;
  line-height: 1;
  font-size: 48px;
}
.reviews .general-title h3 {
  color: #caa22f;
  font-size: 64px;
  line-height: 1;
  font-family: russoone;
  letter-spacing: 2px;
  max-width: 1080px;
}
.reviews-platforms {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.reviews-platform {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  min-height: 240px;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(202, 162, 47, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 140, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.reviews-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 200, 80, 0.08) 0%, rgba(255, 140, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.reviews-platform:hover {
  transform: translateY(-6px);
  border-color: #caa22f;
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.22), 0 20px 40px rgba(0, 0, 0, 0.58), 0 0 34px rgba(255, 140, 0, 0.2);
}
.reviews-platform:hover::before {
  opacity: 1;
}
.reviews-platform__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.reviews-platform__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 47, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f1f5;
  font-family: russoone;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.reviews-platform__rating {
  color: #caa22f;
  font-family: russoone;
  font-size: 44px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 170, 60, 0.18), 0 0 24px rgba(255, 140, 20, 0.14);
}
.reviews-platform__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reviews-platform__info h4 {
  margin: 0;
  color: #f4f1f5;
  font-family: russoone;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 1px;
}
.reviews-platform__info p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
}
.reviews-platform__bottom {
  margin-top: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.4;
}
.reviews-platform__bottom span:last-child {
  color: #caa22f;
  font-family: russoone;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.reviews-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.reviews-tabs__btn {
  min-width: 220px;
  height: 62px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 47, 0.55);
  background: rgba(0, 0, 0, 0.55);
  color: #f4f1f5;
  font-family: russoone;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 220, 170, 0.03), 0 10px 24px rgba(0, 0, 0, 0.35);
}
.reviews-tabs__btn:hover {
  transform: translateY(-3px);
  border-color: #caa22f;
  color: #caa22f;
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.22), 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 155, 61, 0.14);
}
.reviews-tabs__btn.active {
  color: #000;
  background: linear-gradient(180deg, #ffcc00 0%, #ffb300 40%, #ff8f00 100%);
  border-color: rgba(255, 210, 130, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 210, 130, 0.18), 0 14px 34px rgba(201, 124, 34, 0.32), 0 0 34px rgba(255, 140, 20, 0.2);
}
.reviews-pane {
  display: none;
  width: 100%;
  animation: reviewsFade 0.45s ease;
}
.reviews-pane.active {
  display: block;
}
.reviews-slider {
  width: 100%;
  overflow: hidden;
  padding: 8px 6px 26px;
}
.reviews-slider .swiper-wrapper {
  align-items: stretch;
}
.reviews-slider .swiper-slide {
  height: auto;
  box-sizing: border-box;
  padding: 8px 6px 12px;
}
.reviews-slider__nav {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.reviews-slider__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(202, 162, 47, 0.7);
  background: rgba(0, 0, 0, 0.75);
  color: #caa22f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 140, 0, 0.12);
}
.reviews-slider__btn svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.reviews-slider__btn path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reviews-slider__btn:hover {
  transform: translateY(-3px);
  border-color: #caa22f;
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.35), 0 14px 28px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 140, 0, 0.24);
}

.review-card {
  position: relative;
  width: 100%;
  min-height: 320px;
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(202, 162, 47, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 140, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 200, 80, 0.1) 0%, rgba(255, 140, 0, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.28), 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 140, 0, 0.22);
}
.review-card:hover::before {
  opacity: 1;
}
.review-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-card__author strong {
  color: #f4f1f5;
  font-family: russoone;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.8px;
}
.review-card__author span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: russoone;
}
.review-card__stars {
  color: #caa22f;
  font-size: 20px;
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(255, 180, 60, 0.2);
}
.review-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
  flex-grow: 1;
}
.review-card__bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.review-card__bottom span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.3;
}
.review-card__bottom a {
  color: #caa22f;
  text-decoration: none;
  font-family: russoone;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.review-card__bottom a:hover {
  color: #f4f1f5;
}

@keyframes reviewsFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1400px) {
  .reviews {
    padding: 88px 24px;
  }
  .reviews-container {
    gap: 38px;
  }
  .reviews .general-title {
    gap: 22px;
  }
  .reviews .general-title h2 {
    font-size: 42px;
  }
  .reviews .general-title h3 {
    font-size: 56px;
    max-width: 920px;
  }
  .reviews-platforms {
    gap: 20px;
  }
  .reviews-platform {
    padding: 24px;
    min-height: 220px;
    gap: 20px;
  }
  .reviews-platform__rating {
    font-size: 40px;
  }
  .reviews-platform__info h4 {
    font-size: 26px;
  }
  .reviews-platform__info p {
    font-size: 17px;
  }
  .review-card {
    min-height: 300px;
    padding: 24px 22px;
    gap: 20px;
  }
  .review-card__author strong {
    font-size: 22px;
  }
  .review-card__text {
    font-size: 17px;
  }
}
@media (max-width: 1200px) {
  .reviews {
    padding: 80px 20px;
  }
  .reviews-container {
    gap: 34px;
  }
  .reviews .general-title {
    gap: 20px;
  }
  .reviews .general-title h2 {
    font-size: 38px;
  }
  .reviews .general-title h3 {
    font-size: 48px;
    max-width: 760px;
  }
  .reviews-platforms {
    gap: 18px;
  }
  .reviews-platform {
    padding: 22px;
    min-height: 210px;
    border-radius: 20px;
  }
  .reviews-platform__badge {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
  .reviews-platform__rating {
    font-size: 36px;
  }
  .reviews-platform__info h4 {
    font-size: 22px;
  }
  .reviews-platform__info p {
    font-size: 16px;
    line-height: 1.45;
  }
  .reviews-platform__bottom {
    font-size: 14px;
  }
  .reviews-tabs {
    gap: 12px;
  }
  .reviews-tabs__btn {
    min-width: 190px;
    height: 56px;
    padding: 0 20px;
    font-size: 14px;
  }
  .reviews-slider {
    padding: 8px 4px 24px;
  }
  .reviews-slider__btn {
    width: 50px;
    height: 50px;
  }
  .review-card {
    min-height: 280px;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .review-card__author strong {
    font-size: 20px;
  }
  .review-card__author span {
    font-size: 12px;
  }
  .review-card__stars {
    font-size: 18px;
  }
  .review-card__text {
    font-size: 16px;
    line-height: 1.55;
  }
  .review-card__bottom span {
    font-size: 13px;
  }
  .review-card__bottom a {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .reviews {
    padding: 72px 18px;
  }
  .reviews-container {
    gap: 30px;
  }
  .reviews .general-title {
    gap: 18px;
  }
  .reviews .general-title h2 {
    font-size: 34px;
  }
  .reviews .general-title h3 {
    font-size: 40px;
    max-width: 100%;
  }
  .reviews-platforms {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-platform {
    min-height: 200px;
  }
  .reviews-platform__info h4 {
    font-size: 20px;
  }
  .reviews-platform__info p {
    font-size: 15px;
  }
  .reviews-tabs {
    gap: 10px;
  }
  .reviews-tabs__btn {
    min-width: 170px;
    height: 52px;
    font-size: 13px;
    letter-spacing: 0.8px;
  }
  .reviews-slider .swiper-slide {
    padding: 6px 4px 10px;
  }
  .reviews-slider__nav {
    margin-top: 6px;
  }
  .reviews-slider__btn {
    width: 48px;
    height: 48px;
  }
  .reviews-slider__btn svg {
    width: 20px;
    height: 20px;
  }
  .review-card {
    min-height: 260px;
    padding: 20px 18px;
    gap: 18px;
  }
  .review-card__author strong {
    font-size: 18px;
  }
  .review-card__text {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .reviews {
    padding: 64px 16px;
  }
  .reviews-container {
    gap: 26px;
  }
  .reviews .general-title {
    gap: 18px;
  }
  .reviews .general-title h2 {
    font-size: 30px;
  }
  .reviews .general-title h3 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 1px;
  }
  .reviews-platforms {
    gap: 14px;
  }
  .reviews-platform {
    min-height: auto;
    padding: 18px;
    gap: 16px;
    border-radius: 18px;
  }
  .reviews-platform:hover {
    transform: translateY(-4px);
  }
  .reviews-platform__top {
    gap: 12px;
  }
  .reviews-platform__badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }
  .reviews-platform__rating {
    font-size: 30px;
  }
  .reviews-platform__info {
    gap: 10px;
  }
  .reviews-platform__info h4 {
    font-size: 17px;
    line-height: 1.15;
  }
  .reviews-platform__info p {
    font-size: 15px;
    line-height: 1.5;
  }
  .reviews-platform__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
  }
  .reviews-tabs {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .reviews-tabs__btn {
    width: 100%;
    min-width: 100%;
    height: 50px;
    padding: 0 18px;
    font-size: 13px;
  }
  .reviews-slider {
    padding: 6px 2px 20px;
  }
  .reviews-slider__nav {
    margin-top: 2px;
    gap: 10px;
  }
  .reviews-slider__btn {
    width: 44px;
    height: 44px;
  }
  .reviews-slider__btn svg {
    width: 18px;
    height: 18px;
  }
  .review-card {
    min-height: 240px;
    padding: 18px 16px;
    gap: 16px;
    border-radius: 18px;
  }
  .review-card:hover {
    transform: translateY(-4px);
  }
  .review-card__top {
    gap: 12px;
  }
  .review-card__author {
    gap: 4px;
  }
  .review-card__author strong {
    font-size: 17px;
    line-height: 1.15;
  }
  .review-card__author span {
    font-size: 11px;
  }
  .review-card__stars {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .review-card__text {
    font-size: 15px;
    line-height: 1.5;
  }
  .review-card__bottom {
    gap: 10px;
  }
  .review-card__bottom span {
    font-size: 12px;
  }
  .review-card__bottom a {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .reviews {
    padding: 56px 14px;
  }
  .reviews-container {
    gap: 22px;
  }
  .reviews .general-title {
    gap: 16px;
  }
  .reviews .general-title h2 {
    font-size: 26px;
  }
  .reviews .general-title h3 {
    font-size: 28px;
    line-height: 1.08;
  }
  .reviews-platform {
    padding: 16px;
    border-radius: 16px;
  }
  .reviews-platform__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-platform__rating {
    font-size: 28px;
  }
  .reviews-platform__info h4 {
    font-size: 18px;
  }
  .reviews-platform__info p {
    font-size: 14px;
    line-height: 1.45;
  }
  .reviews-platform__bottom {
    font-size: 12px;
  }
  .reviews-tabs__btn {
    height: 48px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }
  .review-card {
    min-height: 220px;
    padding: 16px 14px;
    border-radius: 16px;
  }
  .review-card__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-card__author strong {
    font-size: 18px;
  }
  .review-card__stars {
    font-size: 15px;
  }
  .review-card__text {
    font-size: 14px;
    line-height: 1.45;
  }
  .review-card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 420px) {
  .reviews {
    padding: 48px 12px;
  }
  .reviews-container {
    gap: 20px;
  }
  .reviews .general-title {
    gap: 14px;
  }
  .reviews .general-title h2 {
    font-size: 22px;
  }
  .reviews .general-title h3 {
    font-size: 24px;
    letter-spacing: 0.6px;
  }
  .reviews-platforms {
    gap: 12px;
  }
  .reviews-platform {
    padding: 14px;
    gap: 14px;
    border-radius: 14px;
  }
  .reviews-platform__badge {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }
  .reviews-platform__rating {
    font-size: 24px;
  }
  .reviews-platform__info h4 {
    font-size: 16px;
  }
  .reviews-platform__info p {
    font-size: 13px;
    line-height: 1.4;
  }
  .reviews-platform__bottom {
    gap: 6px;
  }
  .reviews-platform__bottom span {
    font-size: 11px;
  }
  .reviews-tabs__btn {
    height: 46px;
    padding: 0 14px;
    font-size: 11px;
  }
  .reviews-slider {
    padding-bottom: 16px;
  }
  .reviews-slider__nav {
    gap: 8px;
  }
  .reviews-slider__btn {
    width: 40px;
    height: 40px;
  }
  .reviews-slider__btn svg {
    width: 16px;
    height: 16px;
  }
  .review-card {
    min-height: 200px;
    padding: 14px 12px;
    gap: 14px;
    border-radius: 14px;
  }
  .review-card__author strong {
    font-size: 16px;
  }
  .review-card__author span {
    font-size: 10px;
  }
  .review-card__stars {
    font-size: 14px;
  }
  .review-card__text {
    font-size: 13px;
    line-height: 1.4;
  }
  .review-card__bottom span {
    font-size: 11px;
  }
  .review-card__bottom a {
    font-size: 11px;
  }
}
.signup {
  width: 100%;
  padding: 96px 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(255, 170, 40, 0.08) 0%, transparent 35%), radial-gradient(circle at 85% 78%, rgba(255, 120, 0, 0.08) 0%, transparent 35%);
  pointer-events: none;
}
.signup-container {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.signup .general-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.signup .general-title h2 {
  color: #f4f1f5;
  font-family: russoone;
  letter-spacing: 1.5px;
  line-height: 1;
  font-size: 48px;
}
.signup .general-title h3 {
  color: #caa22f;
  font-size: 64px;
  line-height: 1;
  font-family: russoone;
  letter-spacing: 2px;
  max-width: 980px;
}
.signup-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.signup-card__info, .signup-card__form-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(202, 162, 47, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.08), 0 18px 40px rgba(0, 0, 0, 0.52), 0 0 30px rgba(255, 140, 0, 0.12);
}
.signup-card__info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(180deg, rgba(255, 160, 40, 0.04) 0%, rgba(255, 120, 0, 0.02) 100%), #050505;
}
.signup-card__badge {
  align-self: flex-start;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(202, 162, 47, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f1f5;
  font-family: russoone;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.signup-card h4 {
  color: #f4f1f5;
  font-family: russoone;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1.4px;
  max-width: 620px;
}
.signup-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.6;
  max-width: 620px;
}
.signup-card__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 4px;
}
.signup-card__point {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(202, 162, 47, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 20px rgba(0, 0, 0, 0.22);
}
.signup-card__point span {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4f1f5;
  background: linear-gradient(180deg, #ffcc00 0%, #ffb300 40%, #ff8f00 100%);
  font-family: russoone;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(201, 124, 34, 0.22), 0 0 18px rgba(255, 140, 20, 0.14);
}
.signup-card__point p {
  margin: 0;
  color: #f4f1f5;
  font-size: 17px;
  line-height: 1.5;
}
.signup-card__form-wrap {
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255, 160, 40, 0.035) 0%, rgba(255, 120, 0, 0.01) 100%), #040404;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.signup-form__botcheck {
  display: none !important;
}
.signup-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup-form__group--trainer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
  transform: translateY(-8px);
}
.signup-form__group--trainer.active {
  max-height: 140px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.signup-form label {
  color: #f4f1f5;
  font-family: russoone;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.signup-form__input, .signup-form__textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(202, 162, 47, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f1f5;
  font-size: 16px;
  line-height: 1.4;
  font-family: inter;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 20px rgba(0, 0, 0, 0.2);
}
.signup-form__input::-moz-placeholder, .signup-form__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.signup-form__input::placeholder, .signup-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.signup-form__input:focus, .signup-form__textarea:focus {
  border-color: rgba(202, 162, 47, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.22), 0 0 24px rgba(255, 140, 0, 0.12), 0 10px 24px rgba(0, 0, 0, 0.25);
}
.signup-form__input {
  height: 60px;
  padding: 0 18px;
}
.signup-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 196, 0, 0.9) 50%), linear-gradient(135deg, rgba(255, 196, 0, 0.9) 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 4px), calc(100% - 17px) calc(50% - 4px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 48px;
}
.signup-form__select option {
  color: #000;
}
.signup-form__textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}
.signup-form__btn {
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
}
.signup-form__status {
  display: none;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
}
.signup-form__status.active {
  display: block;
}
.signup-form__status--success {
  background: rgba(77, 201, 122, 0.08);
  border: 1px solid rgba(77, 201, 122, 0.28);
  color: #b8ffd0;
}
.signup-form__status--error {
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.28);
  color: #ffc2c2;
}

@media (max-width: 1400px) {
  .signup {
    padding: 88px 24px;
  }
  .signup-container {
    gap: 38px;
  }
  .signup .general-title {
    gap: 22px;
  }
  .signup .general-title h2 {
    font-size: 42px;
  }
  .signup .general-title h3 {
    font-size: 56px;
    max-width: 900px;
  }
  .signup-card {
    gap: 20px;
  }
  .signup-card__info, .signup-card__form-wrap {
    border-radius: 24px;
  }
  .signup-card__info, .signup-card__form-wrap {
    padding: 32px 28px;
  }
  .signup-card h4 {
    font-size: 42px;
    max-width: 560px;
  }
  .signup-card__text {
    font-size: 18px;
  }
  .signup-card__point {
    padding: 16px;
  }
  .signup-card__point p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .signup {
    padding: 80px 20px;
  }
  .signup-container {
    gap: 34px;
  }
  .signup .general-title {
    gap: 20px;
  }
  .signup .general-title h2 {
    font-size: 38px;
  }
  .signup .general-title h3 {
    font-size: 48px;
    max-width: 760px;
  }
  .signup-card {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .signup-card__info, .signup-card__form-wrap {
    padding: 28px 24px;
    border-radius: 22px;
  }
  .signup-card h4 {
    font-size: 36px;
    max-width: 520px;
  }
  .signup-card__text {
    font-size: 17px;
    line-height: 1.5;
  }
  .signup-card__point {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }
  .signup-card__point span {
    width: 56px;
    height: 56px;
    font-size: 18px;
    border-radius: 14px;
  }
  .signup-card__point p {
    font-size: 15px;
    line-height: 1.45;
  }
  .signup-form {
    gap: 16px;
  }
  .signup-form label {
    font-size: 13px;
  }
  .signup-form__input, .signup-form__textarea {
    font-size: 15px;
    border-radius: 16px;
  }
  .signup-form__input {
    height: 56px;
  }
  .signup-form__textarea {
    min-height: 130px;
  }
  .signup-form__status {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .signup {
    padding: 72px 18px;
  }
  .signup-container {
    gap: 30px;
  }
  .signup .general-title {
    gap: 18px;
  }
  .signup .general-title h2 {
    font-size: 34px;
  }
  .signup .general-title h3 {
    font-size: 40px;
    max-width: 100%;
  }
  .signup-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .signup-card__info, .signup-card__form-wrap {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .signup-card h4 {
    font-size: 30px;
    line-height: 1.05;
    max-width: 100%;
  }
  .signup-card__text {
    max-width: 100%;
    font-size: 16px;
  }
  .signup-card__points {
    gap: 12px;
  }
  .signup-card__point p {
    font-size: 15px;
  }
  .signup-form__group {
    gap: 8px;
  }
  .signup-form__input {
    height: 54px;
    padding: 0 16px;
  }
  .signup-form__textarea {
    min-height: 120px;
    padding: 14px 16px;
  }
  .signup-form__status {
    padding: 14px 16px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .signup {
    padding: 64px 16px;
  }
  .signup-container {
    gap: 26px;
  }
  .signup .general-title {
    gap: 18px;
  }
  .signup .general-title h2 {
    font-size: 30px;
  }
  .signup .general-title h3 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 1px;
  }
  .signup-card {
    gap: 14px;
  }
  .signup-card__info, .signup-card__form-wrap {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .signup-card__badge {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }
  .signup-card h4 {
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: 1px;
  }
  .signup-card__text {
    font-size: 15px;
    line-height: 1.5;
  }
  .signup-card__points {
    gap: 10px;
  }
  .signup-card__point {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }
  .signup-card__point span {
    width: 48px;
    height: 48px;
    font-size: 16px;
    border-radius: 12px;
  }
  .signup-card__point p {
    font-size: 14px;
    line-height: 1.45;
  }
  .signup-card__info {
    display: none;
  }
  .signup-form {
    gap: 14px;
  }
  .signup-form label {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .signup-form__group {
    gap: 8px;
  }
  .signup-form__group--trainer.active {
    max-height: 130px;
  }
  .signup-form__input, .signup-form__textarea {
    font-size: 14px;
    border-radius: 14px;
  }
  .signup-form__input {
    height: 52px;
    padding: 0 14px;
  }
  .signup-form__select {
    background-position: calc(100% - 20px) calc(50% - 4px), calc(100% - 13px) calc(50% - 4px);
    background-size: 6px 6px, 6px 6px;
    padding-right: 40px;
  }
  .signup-form__textarea {
    min-height: 110px;
    padding: 14px;
  }
  .signup-form__btn {
    margin-top: 2px;
  }
  .signup-form__status {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.45;
  }
}
@media (max-width: 576px) {
  .signup {
    padding: 56px 14px;
  }
  .signup-container {
    gap: 22px;
  }
  .signup .signup-card__info {
    display: none;
  }
  .signup .general-title {
    gap: 16px;
  }
  .signup .general-title h2 {
    font-size: 26px;
  }
  .signup .general-title h3 {
    font-size: 28px;
    line-height: 1.08;
  }
  .signup-card__info, .signup-card__form-wrap {
    padding: 18px 14px;
    border-radius: 16px;
  }
  .signup-card h4 {
    font-size: 22px;
  }
  .signup-card__text {
    font-size: 14px;
    line-height: 1.45;
  }
  .signup-card__point {
    grid-template-columns: 44px 1fr;
    padding: 10px;
  }
  .signup-card__point span {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  .signup-card__point p {
    font-size: 13px;
    line-height: 1.4;
  }
  .signup-form label {
    font-size: 11px;
  }
  .signup-form__input {
    height: 50px;
    font-size: 13px;
  }
  .signup-form__textarea {
    min-height: 100px;
    font-size: 13px;
  }
  .signup-form__status {
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .signup {
    padding: 48px 12px;
  }
  .signup-container {
    gap: 20px;
  }
  .signup .general-title {
    gap: 14px;
  }
  .signup .general-title h2 {
    font-size: 22px;
  }
  .signup .general-title h3 {
    font-size: 24px;
    letter-spacing: 0.6px;
  }
  .signup-card {
    gap: 12px;
  }
  .signup-card__info, .signup-card__form-wrap {
    padding: 16px 12px;
    border-radius: 14px;
  }
  .signup-card__badge {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }
  .signup-card h4 {
    font-size: 20px;
    letter-spacing: 0.6px;
  }
  .signup-card__text {
    font-size: 13px;
    line-height: 1.4;
  }
  .signup-card__points {
    gap: 8px;
  }
  .signup-card__point {
    grid-template-columns: 40px 1fr;
    gap: 8px;
    padding: 9px;
    border-radius: 12px;
  }
  .signup-card__point span {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 10px;
  }
  .signup-card__point p {
    font-size: 13px;
    line-height: 1.35;
  }
  .signup-form {
    gap: 12px;
  }
  .signup-form label {
    font-size: 10px;
    letter-spacing: 0.6px;
  }
  .signup-form__input, .signup-form__textarea {
    border-radius: 12px;
  }
  .signup-form__input {
    height: 48px;
    padding: 0 12px;
    font-size: 13px;
  }
  .signup-form__textarea {
    min-height: 96px;
    padding: 12px;
    font-size: 13px;
  }
  .signup-form__select {
    padding-right: 36px;
    background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px);
  }
  .signup-form__status {
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 12px;
  }
}
.footer {
  width: 100%;
  padding: 64px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}
.footer-container {
  width: 100%;
  max-width: 1720px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}
.footer__logo {
  font-size: 34px;
  line-height: 1;
  font-family: russoone;
  font-weight: 700;
  color: #f4f1f5;
  text-decoration: none;
}
.footer__logo img {
  width: 80px;
  display: block;
}
.footer__text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 320px;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__socials a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.footer__socials a:hover {
  background: rgba(255, 106, 0, 0.08);
  transform: translateY(-2px);
}
.footer__socials a img {
  width: 100%;
  max-width: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__nav, .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__nav h3, .footer__contacts h3 {
  font-size: 22px;
  line-height: 1.2;
  font-family: russoone;
  color: #f4f1f5;
  letter-spacing: 1px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav a {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: #ff5a00;
}
.footer__contacts {
  gap: 20px;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__contact-item a,
.footer__contact-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #f4f1f5;
  text-decoration: none;
}
.footer__contact-item a:hover {
  color: #ff5a00;
}

@media (max-width: 1440px) {
  .footer {
    padding: 56px 24px 36px;
  }
  .footer-container {
    gap: 40px;
  }
  .footer__logo {
    font-size: 52px;
  }
  .footer__text {
    font-size: 15px;
    max-width: 320px;
  }
  .footer__nav h3, .footer__contacts h3 {
    font-size: 20px;
  }
  .footer__nav a, .footer__contact-item a, .footer__contact-item p {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .footer {
    padding: 52px 20px 34px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .footer__left {
    grid-column: 1/-1;
    max-width: 100%;
  }
  .footer__text {
    max-width: 520px;
  }
  .footer__logo {
    font-size: 30px;
  }
  .footer__nav h3, .footer__contacts h3 {
    font-size: 19px;
  }
}
@media (max-width: 992px) {
  .footer {
    padding: 48px 18px 30px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
  .footer__left {
    gap: 18px;
  }
  .footer__logo {
    font-size: 28px;
  }
  .footer__text {
    font-size: 14px;
    line-height: 1.45;
  }
  .footer__nav, .footer__contacts {
    gap: 16px;
  }
  .footer__nav h3, .footer__contacts h3 {
    font-size: 18px;
  }
  .footer__nav ul {
    gap: 10px;
  }
  .footer__nav a {
    font-size: 14px;
  }
  .footer__contact-item {
    gap: 4px;
  }
  .footer__contact-item span {
    font-size: 12px;
  }
  .footer__contact-item a,
  .footer__contact-item p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left left" "nav contacts";
    gap: 32px;
    max-width: 100%;
  }
  .footer__left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .footer__logo {
    font-size: 24px;
  }
  .footer__text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
  }
  .footer__socials {
    display: flex;
    gap: 12px;
  }
  .footer__socials a {
    width: 56px;
    height: 56px;
  }
  .footer__socials a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer__nav {
    grid-area: nav;
  }
  .footer__nav h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer__nav ul li a {
    font-size: 13px;
  }
  .footer__contacts {
    grid-area: contacts;
  }
  .footer__contacts h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer__contacts .footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
  }
  .footer__contacts .footer__contact-item span {
    font-size: 11px;
    opacity: 0.6;
  }
  .footer__contacts .footer__contact-item a,
  .footer__contacts .footer__contact-item p {
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 14px 24px;
  }
  .footer-container {
    gap: 24px;
  }
  .footer__left {
    gap: 16px;
  }
  .footer__logo {
    font-size: 24px;
  }
  .footer__text {
    font-size: 13px;
    line-height: 1.4;
  }
  .footer__nav, .footer__contacts {
    gap: 14px;
  }
  .footer__nav h3, .footer__contacts h3 {
    font-size: 16px;
  }
  .footer__nav ul {
    gap: 8px;
  }
  .footer__nav a {
    font-size: 13px;
  }
  .footer__contact-item span {
    font-size: 11px;
  }
  .footer__contact-item a,
  .footer__contact-item p {
    font-size: 13px;
    line-height: 1.35;
  }
}
@media (max-width: 420px) {
  .footer {
    padding: 36px 12px 22px;
  }
  .footer-container {
    gap: 20px;
  }
  .footer__logo {
    font-size: 22px;
  }
  .footer__text {
    font-size: 12px;
  }
  .footer__socials {
    gap: 8px;
  }
  .footer__socials a {
    width: 42px;
    height: 42px;
  }
  .footer__socials a img {
    width: 52px;
    height: 42px;
  }
  .footer__nav h3, .footer__contacts h3 {
    font-size: 15px;
  }
  .footer__nav a, .footer__contact-item a, .footer__contact-item p {
    font-size: 12px;
  }
  .footer__contact-item span {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */