/* Neon Grid Cyber Club — Design System */
:root {
  --bg-main: #050711;
  --bg-soft: #0b1020;
  --bg-card: rgba(14, 20, 38, 0.74);
  --primary: #00f5ff;
  --primary-soft: rgba(0, 245, 255, 0.16);
  --accent: #9b5cff;
  --accent-2: #39ff88;
  --text-main: #f5f7ff;
  --text-muted: #9ca8c3;
  --border: rgba(255, 255, 255, 0.12);
  --danger: #ff4d6d;
  --header-h: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(0, 245, 255, 0.12);
  --transition: 0.25s ease;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-main);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--accent-2);
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section__title {
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.section__desc {
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg-main);
  box-shadow: 0 0 24px rgba(0, 245, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(155, 92, 255, 0.35);
  color: var(--bg-main);
}

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-main);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text-muted);
}

.btn--ghost:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

.btn--accent {
  background: var(--primary-soft);
  border-color: rgba(0, 245, 255, 0.35);
  color: var(--primary);
}

.btn--accent:hover {
  background: rgba(0, 245, 255, 0.24);
  color: var(--text-main);
}

.btn--sm {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--icon {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.btn--wa:hover { color: #25d366; border-color: #25d366; }
.btn--tg:hover { color: #2aabee; border-color: #2aabee; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Glass card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.28);
  box-shadow: var(--shadow-glow);
}

/* Stock photography */
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 17, 0.05) 0%, rgba(5, 7, 17, 0.5) 100%);
  pointer-events: none;
}

.card-img--tall {
  height: 200px;
}

.card-img--zone {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.card-img--zone::after {
  background: linear-gradient(180deg, rgba(5, 7, 17, 0.15) 0%, rgba(5, 7, 17, 0.92) 82%);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 7, 17, 0.72);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(18px);
  pointer-events: none;
}

.header--scrolled {
  background: rgba(5, 7, 17, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  flex-shrink: 0;
}

.logo span {
  color: var(--primary);
}

.logo__mark {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
  background: var(--primary-soft);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__call {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-main);
  transition: transform var(--transition), opacity var(--transition);
}

.burger--open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger--open .burger__line:nth-child(2) {
  opacity: 0;
}

.burger--open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-top: var(--header-h);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(5, 7, 17, 0.97) 0%, rgba(5, 7, 17, 0.9) 45%, rgba(5, 7, 17, 0.72) 100%);
}

.hero__bg-photo {
  position: absolute;
  inset: 0;
}

.hero__bg-photo .media-img {
  opacity: 0.45;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

.hero__glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.hero__glow--cyan {
  top: -10%;
  right: -5%;
  background: var(--primary);
}

.hero__glow--violet {
  bottom: -15%;
  left: -10%;
  background: var(--accent);
}

.hero__visual {
  display: none;
}

.hero__photo {
  display: none;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.28);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 4 / 3;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 17, 0.55) 100%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.hero__visual svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 4rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(0, 245, 255, 0.25);
  font-size: 0.8125rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  max-width: 540px;
  margin-bottom: 2rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
}

.features-showcase {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.features-showcase__item {
  padding: 0;
  overflow: hidden;
  margin: 0;
}

.features-showcase__item .card-img {
  height: 220px;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .features-showcase {
    grid-template-columns: 1.35fr 1fr;
  }

  .features-showcase__item .card-img {
    height: 260px;
  }
}

/* Zones */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.zone-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.zone-card--media {
  padding: 0;
  min-height: 320px;
}

.zone-card--media .zone-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.zone-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(5, 7, 17, 0.75);
  border: 1px solid var(--border);
  color: var(--accent-2);
}

.zone-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.zone-card__pattern--standard {
  background: linear-gradient(160deg, rgba(0, 245, 255, 0.15), transparent 60%), var(--bg-soft);
}

.zone-card__pattern--team {
  background: linear-gradient(160deg, rgba(155, 92, 255, 0.2), transparent 60%), var(--bg-soft);
}

.zone-card__pattern--training {
  background: linear-gradient(160deg, rgba(57, 255, 136, 0.15), transparent 60%), var(--bg-soft);
}

.zone-card__pattern--console {
  background: linear-gradient(160deg, rgba(255, 77, 109, 0.12), transparent 60%), var(--bg-soft);
}

.zone-card__body {
  position: relative;
  z-index: 1;
}

/* Equipment */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.equipment-item {
  text-align: center;
  padding: 1.75rem 1rem;
}

.equipment-item svg {
  margin: 0 auto 1rem;
  color: var(--accent);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), transparent);
}

.timeline__step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--primary-soft);
  border: 1px solid rgba(0, 245, 255, 0.35);
  color: var(--primary);
  flex-shrink: 0;
}

.timeline__content h3 {
  color: var(--text-main);
  font-size: 1.125rem;
}

.timeline__content p {
  margin: 0;
  font-size: 0.9375rem;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item__question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-item--open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq-item--open .faq-item__answer {
  max-height: 320px;
}

/* Reviews slider */
.reviews-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.reviews-slider__track {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.reviews-slider__slides {
  display: flex;
  transition: transform 0.4s ease;
}

.review-slide {
  min-width: 100%;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.review-slide__stars {
  color: var(--accent-2);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.review-slide__text {
  font-size: 1.0625rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-slide__author {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reviews-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.reviews-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}

.reviews-slider__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.reviews-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.reviews-slider__dot--active {
  background: var(--primary);
  transform: scale(1.2);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), rgba(155, 92, 255, 0.12));
  border: 1px solid rgba(0, 245, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.cta-block h2 {
  margin-bottom: 0.75rem;
}

.cta-block p {
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.cta-block--media {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-color: rgba(0, 245, 255, 0.25);
}

.cta-block--media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/zone-standard.jpg") center / cover no-repeat;
  opacity: 0.22;
}

.cta-block--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 7, 17, 0.94), rgba(5, 7, 17, 0.82));
}

.cta-block--media > * {
  position: relative;
  z-index: 1;
}

.section--media-bg {
  position: relative;
  overflow: hidden;
}

.section--media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/feature-rgb.jpg") center / cover no-repeat;
  opacity: 0.1;
}

.section--media-bg > .container {
  position: relative;
  z-index: 1;
}

/* Page hero */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-main));
  border-bottom: 1px solid var(--border);
}

.page-hero__title {
  margin-bottom: 0.75rem;
}

.page-hero__desc {
  max-width: 600px;
  margin: 0 auto;
}

/* Services tabs */
.tabs {
  margin-bottom: 2rem;
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.tabs__btn {
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.tabs__btn:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

.tabs__btn--active {
  background: var(--primary-soft);
  border-color: rgba(0, 245, 255, 0.4);
  color: var(--primary);
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-card {
  grid-column: span 12;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.bento-card h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.bento-card p {
  margin: 0;
  flex-grow: 1;
}

.bento-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.bento-card--media {
  padding: 0;
  overflow: hidden;
}

.bento-card--media .bento-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bento-card--media .bento-card__icon {
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .bento-card { grid-column: span 6; }
}

@media (min-width: 900px) {
  .bento-card--wide { grid-column: span 8; }
  .bento-card--narrow { grid-column: span 4; }
}

/* About */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-visual__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.12), rgba(155, 92, 255, 0.18));
  pointer-events: none;
}

.about-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.about-gallery__item {
  padding: 0;
  overflow: hidden;
  margin: 0;
}

.about-gallery__item .card-img {
  height: 200px;
  border-radius: var(--radius-md);
}

.about-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  color: var(--accent-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.team-card h3 {
  color: var(--text-main);
}

.team-card__role {
  font-size: 0.8125rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact-info__item {
  margin-bottom: 1.5rem;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.contact-info__value {
  color: var(--text-main);
  font-size: 1.0625rem;
}

.contact-info__value a {
  color: var(--text-main);
}

.contact-info__value a:hover {
  color: var(--primary);
}

.contact-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-info--media {
  padding: 0;
  overflow: hidden;
}

.contact-info--media .card-img--tall {
  height: 180px;
}

.contact-info--media .contact-info__inner {
  padding: 1.5rem;
}

/* Form */
.form-card {
  padding: 2rem;
}

.form-card__title {
  margin-bottom: 0.5rem;
}

.form-card__desc {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: flex;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(5, 7, 17, 0.6);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

/* Legal */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
}

.legal-content ul {
  margin-bottom: 1.25rem;
}

/* Thank you */
.thank-you {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.thank-you__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(57, 255, 136, 0.15);
  border: 1px solid rgba(57, 255, 136, 0.35);
  color: var(--accent-2);
}

.thank-you__message {
  font-size: 1.125rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 3.5rem 0 2rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.footer__desc {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer__contacts svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.footer__contacts a {
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 1rem 0;
  background: rgba(11, 16, 32, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Responsive */
@media (min-width: 992px) {
  .header__call {
    display: inline-flex;
  }

  .hero__layout {
    grid-template-columns: 1fr minmax(280px, 460px);
  }

  .hero__photo {
    display: block;
  }
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
  }
}

@media (max-width: 991px) {
  .header__call {
    display: none !important;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100vh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 2rem;
    background: rgba(5, 7, 17, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition), visibility var(--transition);
    overflow-y: auto;
    z-index: 1001;
    visibility: hidden;
    pointer-events: none;
  }

  .nav--open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    padding: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .burger {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
