:root {
  --bg: #0b0b0b;
  --bg-elevated: #131313;
  --text: #f2f2f2;
  --muted: #b7b7b7;
  --accent: #d6a354;
  --accent-2: #b8862b;
  --line: rgba(214, 163, 84, 0.35);
  --danger: #ff7a7a;
  --success: #81c784;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 163, 84, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__logo {
  width: 56px;
  height: auto;
}

.header__title {
  font-size: 1rem;
}

.header__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 200ms ease;
}

.header__burger:active {
  transform: scale(0.96);
}

.header__burger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 999px;
  transition: background-color 200ms ease;
}

.nav {
  position: fixed;
  inset: 72px 16px auto 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(214, 163, 84, 0.3);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  z-index: 950;
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background-color 200ms ease, color 200ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  background-color: rgba(214, 163, 84, 0.2);
  color: var(--accent);
}

.section-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(40px, 6vh, 80px) 0 clamp(32px, 5vh, 72px);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #000;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 3vh, 28px);
}

.hero-logo { max-width: clamp(120px, 14vw, 180px); }

.section-hero h1 {
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.05;
  margin: 12px 0 10px;
}

.subtitle {
  color: var(--muted);
  max-width: 820px;
  margin-top: 10px;
  font-size: clamp(14px, 1.6vw, 18px);
}

.hero-buttons {
  margin-top: clamp(16px, 3vh, 28px);
  gap: 14px;
}

.age-limit {
  margin-top: clamp(10px, 2vh, 20px);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  filter: saturate(110%);
}

.h-glow {
  position: absolute;
  width: 70vmax;
  height: 40vmax;
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(48px);
  background: radial-gradient(60% 50% at 50% 50%, rgba(214, 163, 84, 0.55) 0%, rgba(214, 163, 84, 0.18) 40%, rgba(214, 163, 84, 0) 70%);
  mix-blend-mode: screen;
}

.h-glow-a {
  top: -15%;
  left: -12%;
  animation: hDriftA 18s ease-in-out infinite alternate;
}

.h-glow-b {
  top: 45%;
  right: -18%;
  animation: hDriftB 22s ease-in-out infinite alternate;
}

.h-glow-c {
  bottom: -20%;
  left: 10%;
  animation: hDriftC 26s ease-in-out infinite alternate;
}

.h-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(214, 163, 84, 0.06) 45%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: hSheen 14s ease-in-out infinite alternate;
}

@keyframes hDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(7%, 5%) scale(1.06);
  }
}

@keyframes hDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-6%, -4%) scale(1.05);
  }
}

@keyframes hDriftC {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, -6%) scale(1.08);
  }
}

@keyframes hSheen {
  0% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(3%);
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  :root {
    --header-h: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .h-glow-a,
  .h-glow-b,
  .h-glow-c,
  .h-sheen {
    animation: none !important;
  }
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: min(16vh, 140px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0a0a0a 80%);
  pointer-events: none;
}

.section {
  padding: 64px 0;
}

.section__inner {
  display: grid;
  gap: 32px;
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 16px;
}

.section__tagline {
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}

.section__subtitle {
  font-size: 1.2rem;
  margin: 0 0 16px;
}

.section__article p {
  margin: 0 0 16px;
  color: rgba(242, 242, 242, 0.88);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list--grid {
  display: grid;
  gap: 12px;
}

.list__item {
  padding: 12px 16px;
  background: rgba(19, 19, 19, 0.85);
  border: 1px solid rgba(214, 163, 84, 0.2);
  border-radius: 12px;
  font-weight: 500;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badges__item {
  padding: 8px 16px;
  background: rgba(214, 163, 84, 0.12);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--accent);
  white-space: nowrap;
}

.section-geo {
  padding: 80px 0;
  overflow: hidden;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.geo-copy h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.geo-copy p {
  margin: 0 0 12px;
  color: var(--muted);
}

.geo-copy .accent {
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

.geo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.badge:hover,
.badge.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(214, 163, 84, 0.18) inset;
  color: var(--accent);
}

.badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.geo-map {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 14px;
}

.geomap {
  width: 100%;
  max-width: 780px;
  height: auto;
}

.geomap:focus,
.geomap:focus-visible {
  outline: none;
}

.geomap .cell text {
  font: 600 12px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.tooltip {
  position: absolute;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.9);
  color: var(--text);
  border: 1px solid rgba(214, 163, 84, 0.35);
  transform: translate(-50%, -100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  z-index: 5;
}

.tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, -120%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
  border: 1px solid transparent;
}

.button--primary {
  background: var(--accent);
  color: #0a0a0a;
}

.button--primary:hover {
  background: var(--accent-2);
}

.button--primary:active {
  transform: translateY(1px);
}

.button--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button--outline:hover {
  background: rgba(214, 163, 84, 0.1);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 900;
}

.menu-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  border-top: 1px solid rgba(214, 163, 84, 0.2);
  background: #080808;
  padding: 32px 0;
}

.footer__inner {
  display: grid;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  width: 48px;
  height: auto;
}

.footer__copy {
  margin: 0;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__links a {
  color: var(--accent);
  font-weight: 500;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__notice p {
  margin: 0;
  color: rgba(242, 242, 242, 0.6);
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  .cta__actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .header__burger {
    display: none;
  }

  .nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .nav__list {
    display: flex;
    gap: 24px;
  }

  .nav__link {
    padding: 10px 14px;
  }

  .footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 88px 0;
  }
}

@media (max-width: 960px) {
  .geo-grid {
    grid-template-columns: 1fr;
  }

  .geo-map {
    order: -1;
  }

  .geo-map {
    display: none;
  }
}

/* === Advantages Section === */
.section-advantages {
  position: relative;
  isolation: isolate;
  padding: 120px 0;
  background: #0b0b0b;
  overflow: hidden;
}

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

.section-advantages > .adv-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(214, 163, 84, 0.1), transparent 40%),
              radial-gradient(900px 500px at 90% 100%, rgba(214, 163, 84, 0.08), transparent 40%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
}

.adv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.35);
  mix-blend-mode: luminosity;
  opacity: 0.45;
}

#advParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.8;
}

.adv-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 60% at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.45) 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.25));
}

.section-advantages h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-advantages .lead {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 48px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.adv-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.adv-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(214, 163, 84, 0.25);
  transform: translateY(-4px);
}

.adv-card .icon {
  color: var(--accent);
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.adv-card svg {
  width: 100%;
  height: 100%;
}

.adv-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.adv-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.adv-card:nth-child(1) {
  animation-delay: 0.1s;
}

.adv-card:nth-child(2) {
  animation-delay: 0.2s;
}

.adv-card:nth-child(3) {
  animation-delay: 0.3s;
}

.adv-card:nth-child(4) {
  animation-delay: 0.4s;
}

.adv-card:nth-child(5) {
  animation-delay: 0.5s;
}

.adv-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* === Brands Section === */
.section-brands {
  position: relative;
  padding: 100px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.section-brands h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-brands .lead {
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 800px;
}

.brands-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.brand-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.brand-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(214, 163, 84, 0.25);
}

.brand-media img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(214, 163, 84, 0.15));
}

.brand-content h3 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}

.brand-content p {
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.brand-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.brand-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.brands-cta {
  margin-top: 80px;
  text-align: center;
}

.brands-cta h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.brands-cta p {
  color: var(--muted);
  margin-bottom: 24px;
}

.brands-extra {
  margin-top: 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.brands-extra strong {
  color: var(--accent);
}

@media (max-width: 900px) {
  .brand-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-media img {
    max-width: 180px;
  }
}

/* === About Section === */
.section-about {
  position: relative;
  isolation: isolate;
  padding: 110px 0;
  background: #0a0a0a;
  overflow: hidden;
}

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

.section-about > .about-ambient {
  position: absolute;
  inset: -20px -20px -40px -20px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.a-glow {
  position: absolute;
  width: 60vmax;
  height: 38vmax;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(46px);
  background: radial-gradient(60% 50% at 50% 50%, rgba(214, 163, 84, 0.55) 0%, rgba(214, 163, 84, 0.18) 40%, rgba(214, 163, 84, 0) 70%);
  mix-blend-mode: screen;
}

.a-glow-a {
  top: -8%;
  left: -10%;
  animation: aDriftA 18s ease-in-out infinite alternate;
}

.a-glow-b {
  bottom: -16%;
  right: -12%;
  animation: aDriftB 22s ease-in-out infinite alternate;
}

.a-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(214, 163, 84, 0.06) 45%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: aSheen 14s ease-in-out infinite alternate;
}

@keyframes aDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(6%, 4%) scale(1.06);
  }
}

@keyframes aDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, -4%) scale(1.05);
  }
}

@keyframes aSheen {
  0% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(3%);
  }
}

.about-head h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 14px;
}

.about-head .lead {
  color: var(--muted);
  max-width: 900px;
  margin-bottom: 44px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.about-text h3 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-text p {
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-bullets {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}

.about-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--muted);
}

.about-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.about-audiences h4 {
  margin: 18px 0 10px;
  font-size: 16px;
  color: #fff;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 14px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.about-cta {
  display: flex;
  gap: 12px;
  margin: 18px 0 8px;
  flex-wrap: wrap;
}

.about-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.about-aside {
  display: grid;
  gap: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.stat:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(214, 163, 84, 0.22);
  transform: translateY(-2px);
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.timeline h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.timeline ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(214, 163, 84, 0.6);
}

.timeline li strong {
  display: block;
  color: #fff;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 13px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.about-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a-glow,
  .a-sheen {
    animation: none !important;
  }
}

/* === Contact Section === */
.section-contact {
  position: relative;
  padding: 110px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.contact-container {
  position: relative;
  isolation: isolate;
}

.contact-head h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}

.contact-head .lead {
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 28px;
}

.contact-ambient {
  position: absolute;
  inset: -20px -20px -40px -20px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.c-glow {
  position: absolute;
  width: 60vmax;
  height: 38vmax;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(46px);
  background: radial-gradient(60% 50% at 50% 50%, rgba(214, 163, 84, 0.55) 0%, rgba(214, 163, 84, 0.18) 40%, rgba(214, 163, 84, 0) 70%);
  mix-blend-mode: screen;
}

.c-glow-a {
  top: -8%;
  left: -10%;
  animation: cDriftA 18s ease-in-out infinite alternate;
}

.c-glow-b {
  bottom: -16%;
  right: -12%;
  animation: cDriftB 22s ease-in-out infinite alternate;
}

.c-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(214, 163, 84, 0.06) 45%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: cSheen 14s ease-in-out infinite alternate;
}

@keyframes cDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(6%, 4%) scale(1.06);
  }
}

@keyframes cDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, -4%) scale(1.05);
  }
}

@keyframes cSheen {
  0% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(3%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-glow-a,
  .c-glow-b,
  .c-sheen {
    animation: none !important;
  }
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(214, 163, 84, 0.08) inset;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: #fff;
  font-size: 14px;
}

.field label span {
  color: var(--accent);
}

.policy label {
  color: #fff;
  font-size: 14px;
}

.policy span {
  color: var(--accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f2f2f2;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d6a354' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
  background-size: 12px 8px;
  background-color: rgba(0, 0, 0, 0.35);
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form select option {
  background-color: #0f0f0f;
  color: var(--text);
}

.contact-form select option:checked,
.contact-form select option:hover {
  background-color: rgba(214, 163, 84, 0.25);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f8f8f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 163, 84, 0.18);
}

.error {
  color: #ffb4b4;
  font-size: 12px;
  min-height: 14px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox span {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block;
  position: relative;
}

.checkbox input:checked + span {
  border-color: var(--accent);
  background: var(--accent);
}

.checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.policy {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.honeypot {
  position: absolute;
  left: -5000px;
  opacity: 0;
  height: 0;
  width: 0;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
}

.modal p {
  color: var(--muted);
  margin-bottom: 16px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.section--contacts {
  background-image: linear-gradient(180deg, rgba(19, 19, 19, 0.65), rgba(11, 11, 11, 0.9));
}

.section-contacts--compact {
  padding: 90px 0;
  overflow: hidden;
}

.section-contacts--compact {
  position: relative;
  isolation: isolate;
}

.section-contacts--compact > .contacts-ambient {
  position: absolute;
  inset: -16px -16px -32px -16px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.k-glow {
  position: absolute;
  width: 60vmax;
  height: 38vmax;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(46px);
  background: radial-gradient(60% 50% at 50% 50%, rgba(214, 163, 84, 0.55) 0%, rgba(214, 163, 84, 0.18) 40%, rgba(214, 163, 84, 0) 70%);
  mix-blend-mode: screen;
}

.k-glow-a {
  top: -8%;
  left: -10%;
  animation: kDriftA 18s ease-in-out infinite alternate;
}

.k-glow-b {
  bottom: -16%;
  right: -12%;
  animation: kDriftB 22s ease-in-out infinite alternate;
}

.k-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(214, 163, 84, 0.06) 45%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: kSheen 14s ease-in-out infinite alternate;
}

@keyframes kDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(6%, 4%) scale(1.06);
  }
}

@keyframes kDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, -4%) scale(1.05);
  }
}

@keyframes kSheen {
  0% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(3%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .k-glow-a,
  .k-glow-b,
  .k-sheen {
    animation: none !important;
  }
}

.contacts-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  justify-content: center;
}

.contact-chip {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-chip:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(214, 163, 84, 0.22);
  transform: translateY(-2px);
}

.contact-chip--messengers {
  grid-template-columns: 44px 1fr;
}

.chip-icon {
  color: var(--accent);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.chip-icon svg {
  width: 24px;
  height: 24px;
}

.chip-body {
  display: grid;
  gap: 4px;
}

.chip-title {
  color: #fff;
  font-size: 13px;
  opacity: 0.85;
}

.chip-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.chip-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.ms-btn,
.btn-mini {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ms-btn:hover,
.btn-mini:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contacts-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contacts-telegram {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.contacts-telegram__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contacts-telegram__link:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(214, 163, 84, 0.2);
}

.contacts-telegram__icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 980px) {
  .contacts-quick {
    grid-template-columns: 1fr;
  }
}

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

  .section-brands {
    padding: 72px 0;
  }

  .brand-card {
    padding: 28px;
    gap: 28px;
  }

  .geo-grid {
    gap: 32px;
  }

  .geo-map {
    min-height: 300px;
  }

  .section-advantages {
    padding: 96px 0;
  }

  .section-contact {
    padding: 90px 0;
  }

  .section-contacts--compact {
    padding: 72px 0;
  }
}

@media (max-width: 420px) {
  .brand-card {
    padding: 24px;
  }

  .section-hero h1 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .hero-buttons {
    gap: 10px;
  }

  .footer__inner {
    gap: 16px;
  }
}

