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

:root {
  --primary: #0a0a0a;
  --secondary: #111111;
  --accent: #ff5c00;
  --accent2: #ff8c3a;
  --accent-dim: rgba(255, 92, 0, 0.12);
  --white: #ffffff;
  --grey: #f5f5f5;
  --text: #0a0a0a;
  --muted: #666666;
  --border: rgba(255, 92, 0, 0.18);

  --ff-head: "Anton", sans-serif;
  --ff-body: "Open Sans", sans-serif;

  --radius: 4px;
  --shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-head);
  letter-spacing: 0.04em;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-accent {
  color: var(--accent);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.age-gate[hidden] {
  display: none !important;
}
.age-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 92, 0, 0.04) 40px,
    rgba(255, 92, 0, 0.04) 41px
  );
  pointer-events: none;
}
.age-gate__box {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 92, 0, 0.25);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  color: var(--white);
}
.age-gate__logo {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1rem;
}
.age-gate__logo span {
  color: var(--accent);
}
.age-gate__icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.age-gate__box h2 {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.age-gate__box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 2px solid var(--accent);
  z-index: 8000;
  padding: 1.25rem 0;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text h4 {
  font-family: var(--ff-head);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.cookie-banner__text p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.cookie-banner__text a {
  color: var(--accent2);
  text-decoration: underline;
}
.cookie-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 190px;
}
.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
}
.cookie-banner__btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__btns .btn {
  font-size: 0.84rem;
  padding: 0.48rem 1.1rem;
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.header__logo {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.header__logo span {
  color: var(--accent);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__actions .btn {
  padding: 0.42rem 1.1rem;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.22;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.96) 45%,
    rgba(255, 92, 0, 0.15) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 25%;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  opacity: 0.4;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 50%,
    calc(100% - 8px) 100%,
    0 100%
  );
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--accent);
  font-style: normal;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 500px;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 92, 0, 0.2);
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  color: var(--accent);
}
.hero__stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services {
  padding: 5rem 0;
  background: var(--grey);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card__icon {
  width: 50px;
  height: 50px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  color: var(--primary);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.about {
  padding: 5rem 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.about-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-card__img {
  height: 210px;
  background: url("../images/about-1.jpg") center/cover no-repeat;
  position: relative;
}
.about-card:nth-child(2) .about-card__img {
  background-image: url("../images/about-2.jpg");
}
.about-card:nth-child(3) .about-card__img {
  background-image: url("../images/about-3.jpg");
}
.about-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75), transparent);
}
.about-card__body {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--accent);
}
.about-card__body h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  color: var(--primary);
}
.about-card__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.testimonials {
  padding: 5rem 0;
  background: var(--primary);
}
.testimonials .section-title {
  color: var(--white);
}
.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.slider {
  position: relative;
  overflow: hidden;
}
.slider__track {
  display: flex;
  transition: transform 0.45s ease;
}
.slide {
  min-width: 100%;
  padding: 0 0.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 92, 0, 0.18);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.testimonial-card__quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.testimonial-card__loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider__btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 92, 0, 0.25);
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.slider__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.slider__dots {
  display: flex;
  gap: 0.5rem;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.top-sports {
  padding: 5rem 0;
  background: var(--grey);
}
.sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.sport-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 92, 0, 0.25);
}
.sport-card__img {
  height: 210px;
  background: url("../images/sport-hockey.jpg") center/cover no-repeat;
  position: relative;
}
.sport-card:nth-child(2) .sport-card__img {
  background-image: url("../images/sport-football.jpg");
}
.sport-card:nth-child(3) .sport-card__img {
  background-image: url("../images/sport-basketball.jpg");
}
.sport-card:nth-child(4) .sport-card__img {
  background-image: url("../images/sport-soccer.jpg");
}
.sport-card:nth-child(5) .sport-card__img {
  background-image: url("../images/sport-tennis.jpg");
}
.sport-card:nth-child(6) .sport-card__img {
  background-image: url("../images/sport-ufc.jpg");
}
.sport-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 40%, transparent);
}
.sport-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}
.sport-card__body h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.sport-card__body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.sport-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 0 0 var(--radius) 0;
}

.faq {
  padding: 5rem 0;
  background: var(--white);
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--primary);
  gap: 1rem;
  transition: var(--transition);
}
.faq-item__q:hover {
  background: rgba(255, 92, 0, 0.04);
  color: var(--accent);
}
.faq-item__q i {
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-item__q {
  background: rgba(255, 92, 0, 0.06);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}
.faq-item.open .faq-item__q i {
  transform: rotate(180deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-item__a {
  max-height: 400px;
}
.faq-item__a p {
  padding: 1rem 1.5rem 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 4rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__brand-logo {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer__brand-logo span {
  color: var(--accent);
}
.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.footer__socials {
  display: flex;
  gap: 0.65rem;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.footer__col-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 1.1rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col ul li a,
.footer__col ul li button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  transition: var(--transition);
  text-align: left;
}
.footer__col ul li a:hover,
.footer__col ul li button:hover {
  color: var(--accent2);
}

.footer__rg {
  background: #0f0f0f;
  border-left: 4px solid #c0392b;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2rem 2rem 1.75rem;
}
.footer__rg-title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer__rg-title i {
  color: #c0392b;
}
.footer__rg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.footer__rg-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
}
.footer__rg-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 92, 0, 0.3);
  transform: translateY(-1px);
}
.footer__rg-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(192, 57, 43, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e57373;
  font-size: 1rem;
  flex-shrink: 0;
}
.footer__rg-card__text {
  flex: 1;
  min-width: 0;
}
.footer__rg-card__name {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.footer__rg-card__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.15rem;
}
.footer__rg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer__rg-pill {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}
.footer__rg-pill:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}
.footer__rg-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.footer__reg-pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}
.footer__reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.footer__reg-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.footer__reg-badge.green {
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.35);
  background: rgba(76, 175, 80, 0.08);
}
.footer__pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.footer__pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}
.footer__pay-badge.interac {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.07);
}
.footer__pay-badge.mastercard {
  color: #eb5757;
  border-color: rgba(235, 87, 87, 0.3);
  background: rgba(235, 87, 87, 0.07);
}

.footer__legal {
  margin-bottom: 2.5rem;
}
.footer__legal p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 0.65rem;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  transition: var(--transition);
}
.footer__bottom-links a:hover {
  color: var(--accent2);
}
.footer__lang {
  display: flex;
  gap: 0.75rem;
}
.footer__lang a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  transition: var(--transition);
}
.footer__lang a:hover {
  color: var(--accent2);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.modal__head {
  background: var(--primary);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent);
}
.modal__head h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.modal__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: var(--transition);
}
.modal__close:hover {
  color: var(--accent);
}
.modal__body {
  padding: 2rem 1.75rem;
}
.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
  gap: 0.75rem;
}
.modal__success i {
  font-size: 3rem;
  color: var(--accent);
}
.modal__success h4 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.modal__success p {
  font-size: 0.9rem;
  color: var(--muted);
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1);
}
.form-group--check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-group--check input {
  width: auto;
  margin-top: 0.15rem;
  accent-color: var(--accent);
}
.form-group--check label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
}
.form-group--check label a {
  color: var(--accent);
  text-decoration: underline;
}
.form-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-switch a {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}
.modal__footer {
  padding: 0.75rem 0 0;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--accent);
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 92, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 800;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--accent2);
  transform: translateY(-3px);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1.5px solid rgba(255, 92, 0, 0.3);
  border-radius: var(--radius);
  color: var(--accent);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.5rem;
}
.btn-back:hover {
  background: rgba(255, 92, 0, 0.06);
  border-color: var(--accent);
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.legal-page h1 {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.legal-page .legal-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.65rem;
}
.legal-page ul {
  padding-left: 1.5rem;
}
.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer__rg-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__top > *:first-child {
    grid-column: 1 / -1;
  }
  .footer__reg-pay-row {
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__top > *:first-child {
    grid-column: auto;
  }
  .footer__rg-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    gap: 1.5rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
