﻿@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400&family=Forum&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --deep: #0a0a1c;
  --gold: #f8ecb3;
  --gold-soft: #fff7d2;
  --content: 1100px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: #fff;
  background: var(--deep);
  font-family: "Montserrat", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--deep);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--content));
  transform: translateX(-50%);
  padding: 16px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 21px;
  height: 20px;
  border-radius: 5px;
  background:
    center / cover no-repeat url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/CuR-igL7ckC70tht05EKyA.png"),
    linear-gradient(318deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
}

.brand-text {
  font-family: "Forum", Georgia, serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: .5px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.site-nav a {
  color: #e5e7eb;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(248,236,179,.7);
  background: rgba(255,255,255,.06);
}

.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
}

.section-inner {
  width: min(calc(100% - 100px), var(--content));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-page {
  background: var(--deep);
}

.reviews-hero {
  position: relative;
  min-height: 1935px;
  padding: 150px 0 80px;
  overflow: hidden;
  background: var(--deep);
}

.reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 620px 520px at 92% -18%, rgba(106,13,173,.68) 0%, rgba(106,13,173,.34) 32%, rgba(10,10,28,0) 76%),
    radial-gradient(ellipse 520px 440px at 76% -10%, rgba(15,240,252,.18) 0%, rgba(15,240,252,.08) 34%, rgba(10,10,28,0) 72%),
    radial-gradient(ellipse 520px 460px at -13% 22%, rgba(106,13,173,.42), rgba(15,240,252,.16) 34%, rgba(10,10,28,0) 72%),
    radial-gradient(ellipse 520px 460px at 110% 72%, rgba(106,13,173,.42), rgba(15,240,252,.14) 34%, rgba(10,10,28,0) 74%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 68%);
}

.reviews-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse 48% 42% at 48% 46%, rgba(15,240,252,.55) 0%, rgba(106,13,173,.5) 34%, rgba(106,13,173,.18) 60%, rgba(10,10,28,0) 100%);
  filter: blur(36px);
  opacity: .45;
}

.reviews-glow--top {
  width: 920px;
  height: 840px;
  right: -520px;
  top: -520px;
}

.reviews-glow--left {
  width: 620px;
  height: 620px;
  left: -430px;
  top: 250px;
}

.reviews-glow--right {
  width: 620px;
  height: 620px;
  right: -395px;
  top: 1100px;
}

.reviews-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.reviews-intro h1 {
  margin: 0;
  color: var(--gold);
  font-family: "Forum", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reviews-intro p {
  max-width: 758px;
  margin: 22px auto 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.review-tabs {
  width: min(100%, 520px);
  height: 41px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #fdfeff;
  border-radius: 5px;
  overflow: hidden;
}

.review-tabs button {
  min-width: 0;
  padding: 0 18px;
  color: #fdfeff;
  border: 0;
  border-right: 1px solid rgba(253,254,255,.85);
  background: transparent;
  font-family: "Fira Sans", "Inter", sans-serif;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.review-tabs button:last-child {
  border-right: 0;
}

.review-tabs button:hover,
.review-tabs button:focus-visible {
  background: rgba(255,255,255,.08);
}

.review-tabs button.is-active {
  color: var(--deep);
  background: #fdfeff;
}

.reviews-panel {
  margin-top: 40px;
}

.reviews-panel[hidden] {
  display: none;
}

.reviews-grid {
  width: min(100%, 964px);
  margin: 0 auto;
  column-count: 2;
  column-gap: 32px;
}

.review-card {
  width: 100%;
  margin: 0 0 32px;
  display: block;
  break-inside: avoid;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews-video-grid {
  width: min(100%, 964px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 466px));
  justify-content: center;
  gap: 32px;
}

.review-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  overflow: hidden;
}

.review-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.gold-button {
  margin: 48px auto 0;
  width: max-content;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-radius: 10px;
  color: #040404;
  background: linear-gradient(318deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  font-family: "Forum", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gold-button[hidden] {
  display: none;
}

.gold-button span:first-child {
  width: 49px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(270deg, #ffed97 0%, #fff5c7 50%, #ffed97 100%);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.gold-button:hover,
.gold-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(248,236,179,.18);
}

.site-footer {
  width: 100%;
  padding: 40px max(24px, calc((100vw - 1200px) / 2 + 89px)) 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: #000204;
}

.site-footer__brand {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,.9);
}

.brand--footer {
  margin-bottom: 28px;
}

.site-footer__brand p,
.site-footer__links a {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.site-footer__links {
  display: grid;
  gap: 2px;
  max-width: 525px;
}

.site-footer__links a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(248,236,179,.85);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .site-header {
    width: min(calc(100% - 20px), var(--content));
    padding-inline: 20px;
  }

  .site-nav {
    gap: 18px;
  }

  .section-inner {
    width: min(calc(100% - 40px), var(--content));
  }

}

@media (max-width: 780px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 28px), var(--content));
    padding: 16px 19px;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 28px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    color: inherit;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.02);
  }

  .nav-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 99px;
    background: currentColor;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }
  .social-links {
    display: none;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 4px;
  }

  .site-nav.is-open + .social-links,
  .site-header:has(.site-nav.is-open) .social-links {
    display: flex;
  }
  .reviews-hero {
    min-height: auto;
    padding: 128px 0 68px;
  }

  .reviews-intro h1 {
    font-size: 38px;
  }

  .reviews-intro p {
    font-size: 17px;
  }

  .review-tabs button {
    min-height: 44px;
    border-right: 1px solid rgba(253,254,255,.85);
    font-size: 17px;
  }

  .review-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .reviews-video-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reviews-grid {
    column-count: 1;
  }

  .review-card {
    margin-bottom: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 20px;
  }

  .site-footer__links {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .reviews-intro h1 {
    font-size: 32px;
  }

  .reviews-intro p {
    font-size: 16px;
  }

  .review-tabs {
    width: min(100%, 320px);
    height: auto;
    grid-template-columns: 1fr;
  }

  .review-tabs button,
  .review-tabs button:nth-child(n) {
    min-height: 42px;
    padding: 8px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(253,254,255,.85);
    white-space: normal;
  }

  .review-tabs button:last-child {
    border-bottom: 0;
  }

  .gold-button {
    max-width: 100%;
    white-space: normal;
    font-size: 22px;
  }
}



