:root {
  --bg: #121212;
  --bg-elevated: #1c1917;
  --bg-soft: radial-gradient(circle at top, #1c1917 0, #121212 55%, #060606 100%);
  --text: #f5f5dc;
  --muted: rgba(245, 245, 220, 0.72);
  --border-subtle: rgba(245, 245, 220, 0.16);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --cream: #f5f5dc;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html,
body {
  min-width: 0;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
  /* clip замість hidden — не обрізає вертикальний контент */
  overflow-x: clip;
}

/* Коли мобільне меню відкрите — не прокручувати сторінку */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.03em;
}

.shell {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

/* Шапка: логотип не роздувається, навігація має місце */
header.shell {
  flex-wrap: nowrap;
  min-width: 0;
}

header.shell > a {
  min-width: 0;
  flex-shrink: 0;
}

header.shell nav {
  flex-shrink: 1;
  min-width: 0;
}

.section {
  padding-block: 4rem;
  min-width: 0;
}

main {
  min-width: 0;
}

.section--alt {
  background: radial-gradient(circle at top left, #1f2933 0, #121212 55%);
}

.section__head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section__head h2 {
  font-size: clamp(1.9rem, 3vw + 0.6rem, 2.4rem);
  line-height: 1.25;
}

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

.hero {
  padding-block: 4.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-glass-capsule {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 2.75rem;
  border-radius: clamp(1.25rem, 4vw, 2.5rem);
  padding: 1px;
  background:
    radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.7), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(245, 245, 220, 0.45), transparent 70%);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(212, 175, 55, 0.4);
  overflow: hidden;
}

.hero-glass-surface {
  position: relative;
  border-radius: clamp(1.2rem, 3.5vw, 2.4rem);
  padding: clamp(1.25rem, 3vw, 2.4rem) clamp(1.25rem, 3vw, 2.6rem);
  background: radial-gradient(circle at top left, rgba(24, 20, 16, 0.92), rgba(6, 5, 4, 0.96));
  border: 1px solid rgba(245, 245, 220, 0.14);
  backdrop-filter: blur(32px);
}

.hero-glass-surface::before,
.hero-glass-surface::after {
  content: "";
  position: absolute;
  inset: 1.4rem;
  border-radius: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  opacity: 0.7;
}

.hero-glass-surface::after {
  inset: 2.3rem;
  border-radius: 1.7rem;
  border-color: rgba(245, 245, 220, 0.16);
  opacity: 0.8;
}

.hero-glass-content {
  position: relative;
  max-width: 640px;
  min-width: 0;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero__title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.1rem);
  line-height: 1.15;
}

.hero__sub {
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.hero__stats li {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), rgba(0, 0, 0, 0.7));
}

.hero__stats li span {
  color: var(--cream);
  font-weight: 600;
  margin-right: 0.25rem;
}

.hero__visual {
  position: relative;
  min-height: 320px;
}

.hero-visual__frame {
  position: relative;
  border-radius: 1.75rem;
  padding: 1px;
  background: radial-gradient(circle at top left, var(--gold), transparent 55%);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(212, 175, 55, 0.25);
}

.hero-visual__glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(212, 175, 55, 0.22), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(245, 245, 220, 0.12), transparent 55%);
  opacity: 0.9;
  filter: blur(16px);
}

.hero-visual__image {
  position: relative;
  border-radius: 1.65rem;
  overflow: hidden;
  background: radial-gradient(circle at top, #27211c, #121212 60%);
  min-height: 280px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-visual__layer {
  position: absolute;
  inset: 1.75rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(245, 245, 220, 0.1);
}

.hero-visual__layer--primary {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-6px);
}

.hero-visual__layer--secondary {
  inset: 2.6rem;
  border-color: rgba(245, 245, 220, 0.22);
}

.hero-visual__caption {
  position: relative;
  max-width: 17rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual__caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.9rem;
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.trusted {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.trusted__bar {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
}

.trusted__bar i {
  width: 56px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), transparent);
  border: 1px solid var(--border-subtle);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0.75rem 0 0;
  list-style: none;
}

.badges li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--muted);
  backdrop-filter: blur(12px);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.6));
}

.tiles .tile {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), #121212 60%);
  border-radius: 1.4rem;
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
}

.tiles .tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 245, 220, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tiles .tile:hover::before {
  opacity: 1;
}

.tile__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, rgba(212, 175, 55, 0.9), rgba(28, 25, 23, 1));
  color: #1c1917;
  margin-bottom: 0.4rem;
}

.tile__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.tiles .tile h3 {
  margin: 0;
  font-size: 1.25rem;
}

.tiles .tile p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.list li + li {
  margin-top: 0.25rem;
}

.market {
  display: grid;
  gap: 1.75rem;
  border-radius: 1.6rem;
  padding: 1.75rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), #121212 60%);
  border: 1px solid var(--border-subtle);
  min-width: 0;
}

.market__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.market__stat {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.35);
}

.market__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.market__value {
  font-size: 1rem;
}

.market__detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: flex-start;
}

.market__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, rgba(212, 175, 55, 0.9), rgba(28, 25, 23, 1));
  color: #1c1917;
}

.market__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.about__head {
  text-align: center;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  min-width: 0;
}

.card-g {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), #121212 60%);
  border-radius: 1.4rem;
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--border-subtle);
}

.facts {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.facts div {
  display: grid;
  gap: 0.1rem;
}

.facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.facts dd {
  margin: 0;
}

.contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.contacts span {
  color: var(--muted);
  margin-right: 0.4rem;
}

.contacts a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px dotted rgba(245, 245, 220, 0.4);
}

.contacts a:hover {
  border-bottom-style: solid;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--gold), #f5f5dc);
}

.btn {
  appearance: none;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--cream);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn:hover {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, #d4af37, #f5f5dc);
  color: #1c1917;
  border-color: transparent;
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.anim-pulse {
  position: relative;
  isolation: isolate;
}

.anim-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.6), transparent 60%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.25s ease;
}

.anim-pulse:hover::after {
  opacity: 0.5;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.3rem;
  min-width: 0;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: rgba(12, 10, 9, 0.9);
  color: var(--cream);
  font-size: 0.95rem;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.7),
    0 0 0 8px rgba(212, 175, 55, 0.18);
}

.section--contact {
  position: relative;
}

.contact__wrap {
  position: relative;
  border-radius: 1.6rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.7), rgba(245, 245, 220, 0.2));
}

.contact__bg {
  position: absolute;
  inset: 0;
  border-radius: 1.6rem;
  background:
    radial-gradient(900px 600px at 10% 0, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(600px 500px at 90% 100%, rgba(245, 245, 220, 0.12), transparent 60%),
    #121212;
}

.section--contact .contact {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem 1.6rem;
  background: rgba(10, 9, 8, 0.96);
  border: 1px solid rgba(245, 245, 220, 0.14);
  backdrop-filter: blur(18px);
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 2.25rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.9fr));
  gap: 1.75rem;
  min-width: 0;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer .logo {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #d4af37, #f5f5dc);
  color: #1c1917;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer__heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.footer__links a {
  color: var(--cream);
  text-decoration: none;
}

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

.footer__meta {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(12, 10, 9, 0.96);
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.nav__list li {
  display: inline-flex;
  align-items: center;
}

.nav__list a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

/* Кнопка Contact us в навигации — выравнивание по центру строки */
.nav__list .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav__list a:hover {
  color: var(--gold);
}

/* Кнопка закриття (хрестик) — тільки на мобільному, на десктопі не показувати */
.nav__close-item {
  display: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Десктоп: хрестик і бургер не показуємо — тільки горизонтальна навігація */
@media (min-width: 769px) {
  .nav__close-item {
    display: none !important;
  }
}

.nav__close {
  appearance: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--cream);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__close:hover,
.nav__close:focus {
  color: var(--gold);
  background: rgba(245, 245, 220, 0.08);
  outline: none;
}

.nav__close span {
  font-weight: 300;
}

.neu-glass-card,
.neu-glass-card-large {
  position: relative;
  border-radius: 1.4rem;
  border: 1px solid var(--border-subtle);
  background: rgba(10, 9, 8, 0.9);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.neu-glass-card {
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.neu-glass-card-large {
  margin-top: 2.2rem;
  padding: 1.8rem 1.6rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
}

.neu-glass-card::before,
.neu-glass-card-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.24), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.neu-glass-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, rgba(212, 175, 55, 0.9), rgba(28, 25, 23, 1));
  color: #1c1917;
  position: relative;
}

.neu-glass-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.neu-glass-card h3,
.neu-glass-card-large h3 {
  margin: 0;
  font-size: 1.2rem;
}

.neu-glass-card p,
.neu-glass-card-large p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.neu-glass-content {
  display: grid;
  gap: 0.75rem;
}

.advantages-grid {
  align-items: stretch;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1.8rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.6), transparent);
}

.timeline-step {
  position: relative;
  padding-bottom: 1.6rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -1.1rem;
  top: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, var(--gold), #f5f5dc);
  color: #1c1917;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.timeline-body {
  padding-left: 1.6rem;
}

.timeline-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.faq__item {
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary span {
  font-size: 0.95rem;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__content {
  padding: 0 1.1rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq__content p {
  margin: 0;
}

/* Мобільна навігація (бургер + хрестик) тільки на вузьких екранах ≤768px */
@media (max-width: 768px) {
  .nav__toggle {
    display: inline-flex !important;
  }

  .nav__list {
    position: fixed;
    inset: 72px 1.5rem auto 1.5rem;
    background: rgba(12, 10, 9, 0.98);
    border-radius: 1.2rem;
    border: 1px solid var(--border-subtle);
    padding: 0.9rem;
    display: grid !important;
    gap: 0.45rem;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 40;
    flex-wrap: nowrap;
  }

  .nav__list[data-open="1"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__close-item {
    display: flex !important;
    justify-content: flex-end;
  }

  .nav__list li {
    display: block;
  }

  .nav__list .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-block: 3.5rem;
  }

  .hero__visual {
    order: -1;
  }

  .about__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .market__stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .neu-glass-card-large {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .shell {
    padding-inline: 1rem;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__cta {
    align-items: flex-start;
  }

  .trusted {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    text-align: left;
  }

  .nav__list {
    position: fixed;
    inset: 72px 1.5rem auto 1.5rem;
    background: rgba(12, 10, 9, 0.98);
    border-radius: 1.2rem;
    border: 1px solid var(--border-subtle);
    padding: 0.9rem;
    display: grid;
    gap: 0.45rem;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 40;
  }

  .nav__list[data-open="1"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .market__detail {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Узкие экраны — адаптация контента под окно */
@media (max-width: 600px) {
  .shell {
    padding-inline: 0.75rem;
  }

  .hero-glass-surface {
    padding: 1rem 1rem;
  }

  .hero__title {
    font-size: clamp(1.6rem, 5vw + 0.5rem, 2.2rem);
  }

  .section {
    padding-block: 2.5rem;
  }

  .section__head h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  }

  header.shell {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  header.shell a span:last-child span:first-child {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .contact {
    padding: 1.25rem 1rem;
  }

  .trusted__bar i {
    width: 40px;
  }
}

/* Предотвращение переполнения от длинных слов/URL */
h1, h2, h3, .hero__sub, .section__head p, .contact a, .contacts a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

