.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
  width: 92%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: rgba(8, 18, 24, 0.75);
  /* Більше прозорості для ефекту скла */
  border: 1px solid rgba(0, 229, 255, 0.1);
  /* Тонша, більш професійна рамка */
  border-radius: 100px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  transition: all 0.3s ease;
}

.header:hover {
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(8, 18, 24, 0.85);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__icon {
  width: 70px;
  /* Трохи зменшив для елегантності */
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo__icon {
  transform: scale(1.05);
}

.logo__text {
  display: none;
}

.nav {
  display: flex;
  gap: 1.8rem;
  /* Більше повітря між пунктами меню */
  align-items: center;
}

.nav__link {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-accent);
}

.header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
  /* Added gap for spacing between lang switch and button */
}

/* Language Switcher */
.lang-switch {
  display: flex;
  gap: 0.4rem;
  font-size: 0.65rem;
  /* Зменшено розмір тексту */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  /* Зроблено вужчим */
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
}

/* --- Modern Burger Menu --- */
.burger-menu {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001 !important;
  padding: 0;
  margin-left: auto;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00e5ff;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.burger-menu::before,
.burger-menu::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00e5ff;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.burger-menu::before {
  top: 0;
}

.burger-menu::after {
  bottom: 0;
  width: 60%;
  /* Стильна коротка лінія */
  right: 0;
}

/* Анімація в активний стан (X) */
.burger-menu.active span {
  transform: scaleX(0);
  opacity: 0;
}

.burger-menu.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active::after {
  bottom: 50%;
  width: 100%;
  transform: translateY(50%) rotate(-45deg);
}

.burger-menu.active span {
  background: transparent;
}

.burger-menu.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.lang-switch:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.lang-option {
  transition: color var(--transition-base);
}

.lang-option:hover {
  color: #fff;
}

.lang-option.active {
  color: var(--color-accent);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.lang-separator {
  opacity: 0.4;
}

.btn--get-touch {
  padding: 0.5rem 1.2rem;
  /* Значно вужча та компактніша кнопка */
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  /* Трохи менший розрив між буквами */
  text-decoration: none;
  color: var(--color-accent);
  font-size: 0.65rem;
  /* Зменшений шрифт для елегантності */
  font-weight: 700;
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn--get-touch:hover {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.6), 0 0 10px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.btn--get-touch::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
  pointer-events: none;
}

.btn--get-touch:hover::after {
  left: 100%;
}

:root {
  --color-bg: #0d0d0d;
  --color-bg-alt: #1a1a1a;
  --color-accent: #00e5ff;
  --color-accent-soft: rgba(0, 229, 255, 0.35);
  --color-text: #ffffff;
  --color-text-dim: #8a8a8a;
  --color-border: rgba(0, 229, 255, 0.4);
  --transition-base: 220ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease-out;
  pointer-events: auto;
}

.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-screen__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.splash-screen__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.1), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.08), transparent 50%),
    linear-gradient(160deg, var(--color-bg) 0%, #020202 100%);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: -0.015em;
  /* Легке стиснення для основного тексту */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.035em;
  /* Сильніше стиснення для заголовків, як на скріні */
  font-weight: 700;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.background__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.1) brightness(0.6);
}

.background__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(2, 8, 12, 0.45) 60%, rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(2px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem clamp(2rem, 4vw, 6rem);
  background: rgba(5, 12, 15, 0.6);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo__icon {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.35));
}

.logo__text {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.logo__text-highlight {
  color: var(--color-accent);
}

.nav {
  display: flex;
  gap: 0.8rem;
}

.nav__link {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

.nav__link:visited {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__link:hover,
.nav__link:focus {
  color: var(--color-accent);
}

.nav__link:hover::after,
.nav__link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.header__cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--color-accent);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
  transition: background var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.header__cta:hover,
.header__cta:focus {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 2rem clamp(2rem, 5vw, 6rem) 4rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__content {
  position: relative;
  padding: clamp(2.6rem, 5vw, 3.2rem);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(10, 24, 30, 0.85) 0%, rgba(5, 10, 12, 0.55) 100%);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  overflow: hidden;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.25), transparent 65%);
  opacity: 0.6;
  border-radius: inherit;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.hero__title {
  font-size: clamp(2.6rem, 4.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto;
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--color-text-dim);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.btn--primary {
  background: var(--color-accent);
  border: 1px solid rgba(0, 229, 255, 0.8);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--primary:hover,
.btn--primary:focus {
  box-shadow: 0 0 45px rgba(0, 229, 255, 0.7), 0 0 15px rgba(0, 229, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
  background: #fff;
  border-color: #fff;
}

.btn--ghost {
  border: 1px dashed var(--color-border);
  color: var(--color-accent);
  background: rgba(0, 229, 255, 0.06);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: rgba(0, 229, 255, 0.13);
}

.hero__metrics {
  margin-top: auto;
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  padding: 1.2rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 229, 255, 0.15);
  background: rgba(7, 18, 24, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.metric__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.metric__label {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  line-height: 1.3;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.hud {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hud__panel {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background: rgba(4, 12, 16, 0.7);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.1);
}

.hud__panel--primary {
  background: rgba(4, 18, 24, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.25);
}

.hud__panel--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud__title {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hud__text {
  font-size: 0.95rem;
  color: var(--color-text-dim);
}

.hud__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hud__chip {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: transparent;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.hud__chip:hover,
.hud__chip:focus {
  background: rgba(0, 229, 255, 0.18);
}

.hud__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  margin-bottom: 1rem;
}

.hud__list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.hud__item {
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 229, 255, 0.5);
  background: transparent;
}

.hud__signal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hud__signal-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
  animation: pulse 1700ms infinite;
}

.hud__value {
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
}

.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(2rem, 5vw, 6rem);
  width: min(100%, 1160px);
  margin: 0 auto;
}

.section--grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}

.section__header {
  max-width: 48rem;
}

.section__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section--grid .section__eyebrow {
  margin-bottom: 0.75rem;
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section__header p {
  color: var(--color-text-dim);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.8rem;
  border-radius: 1rem;
  background: rgba(5, 12, 16, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.card p {
  color: var(--color-text-dim);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
}

.section--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section__media img {
  width: 100%;
  border-radius: 1.25rem;
  mix-blend-mode: screen;
}

.glow-frame {
  position: relative;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 229, 255, 0.25);
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.03) 100%);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.section__content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.timeline__item {
  position: relative;
  padding-left: 1.75rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

.timeline__item::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 1.2rem;
  bottom: -1.2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.4), transparent);
}

.timeline__item:last-child::after {
  display: none;
}

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

.timeline__item p {
  margin-top: 0.5rem;
  color: var(--color-text-dim);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-decoration: none;
}

.link::after {
  content: '↗';
  font-size: 0.85rem;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

.team__member {
  padding: 1.6rem;
  border-radius: 1rem;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  background: rgba(4, 12, 16, 0.6);
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.08);
}

.team__member h3 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}

.team__member p {
  color: var(--color-text-dim);
}

.section--cta {
  position: relative;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  border-radius: 2rem;
  border: 1px solid rgba(0, 229, 255, 0.14);
  pointer-events: none;
}

.cta {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border-radius: 2rem;
  background: rgba(6, 18, 24, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 45px rgba(0, 229, 255, 0.18);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--color-text-dim);
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.section--contact {
  background: rgba(3, 10, 13, 0.85);
  border-top: 1px solid rgba(0, 229, 255, 0.18);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__form {
  display: grid;
  gap: 1.2rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.field input,
.field textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

.footer {
  padding: 2rem clamp(2rem, 5vw, 6rem) 3rem;
  border-top: 1px solid rgba(0, 229, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.footer__socials {
  display: flex;
  gap: 1.2rem;
}

.footer__socials a {
  color: var(--color-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Chat Modal Styles */
.chat-modal {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 90%;
  max-width: 420px;
  height: 600px;
  border-radius: 1rem;
  background: rgba(10, 24, 30, 0.95);
  border: 2px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
  backdrop-filter: blur(16px);
  animation: slideUp 0.3s ease-out;
}

.chat-modal.active {
  display: flex;
  flex-direction: column;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.chat-modal__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.chat-modal__header {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-modal__header h3 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.chat-modal__close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
}

.chat-modal__close:hover {
  color: #fff;
}

.chat-modal__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  gap: 0.8rem;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message--user {
  justify-content: flex-end;
}

.chat-message__content {
  max-width: 75%;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  word-wrap: break-word;
}

.chat-message--user .chat-message__content {
  background: rgba(0, 229, 255, 0.2);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #fff;
}

.chat-message--agent .chat-message__content {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--color-text-dim);
}

.chat-modal__input-wrapper {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(10, 24, 30, 0.85);
}

.chat-modal__input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 0.6rem;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.chat-modal__input:focus {
  outline: none;
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.chat-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-modal__send {
  background: var(--color-accent);
  border: none;
  color: var(--color-bg);
  padding: 0.7rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chat-modal__send:hover {
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
  transform: scale(1.02);
}

.hud__contact-btn {
  background: var(--color-accent);
  border: none;
  color: var(--color-bg);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: box-shadow 0.2s;
  margin-top: 0.8rem;
  width: 100%;
}

.hud__contact-btn:hover {
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
}

/* --- Professional Contact Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 18, 24, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #0c181e;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 24px;
  width: min(90%, 550px);
  padding: 3rem;
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(0, 229, 255, 0.2);
  color: var(--color-accent);
}

@media (max-width: 1080px) {
  /* --- Professional Mobile UI Overhaul --- */

  .header {
    top: 0 !important;
    width: 100% !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 0 !important;
    background: rgba(8, 18, 24, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15) !important;
    justify-content: space-between !important;
    z-index: 10001 !important;
  }

  /* Чиста шапка: тільки Лого та Бургер */
  .header__actions,
  .header .nav:not(.active) {
    display: none !important;
  }

  .burger-menu {
    display: block !important;
    margin-left: auto !important;
  }

  /* --- Premium Full-Screen Menu Overlay --- */
  .nav.active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(8, 18, 24, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    padding: 6rem 2.5rem 2rem !important;
    gap: 0.5rem !important;
    z-index: 10000 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  /* Повертаємо мови та кнопку всередину меню на мобільних */
  .nav.active~.header__actions {
    display: flex !important;
    position: fixed !important;
    top: 1.5rem !important;
    left: 2.5rem !important;
    z-index: 10002 !important;
    pointer-events: all !important;
  }

  .nav.active~.header__actions .btn--get-touch {
    display: none !important;
    /* Кнопку сховаємо, щоб не забивати верх */
  }

  .nav.active~.header__actions .lang-switch {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .nav.active .nav__link {
    display: block !important;
    font-size: 1.6rem !important;
    color: #fff !important;
    font-weight: 300 !important;
    /* Тонкий шрифт як ти просив */
    text-transform: uppercase;
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 229, 255, 0.05);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    animation: fadeInLink 0.4s forwards;
    letter-spacing: 0.05em;
  }

  @keyframes fadeInLink {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* --- Titles & Text Centering Fix --- */
.about-hero,
.platform-hero {
  padding: 7rem 1.25rem 2rem !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.5rem !important;
  height: auto !important;
}

/* Центрування кнопок (для інших секцій, залишаємо лише about-hero/platform-hero) */
.about-hero .btn,
.about-hero .btn--primary,
.platform-hero .btn,
.platform-hero .btn--primary {
  margin: 1rem auto !important;
}

/* Influencer Cards Fix (No more boxes in boxes) */
.influencer-card {
  background: rgba(10, 24, 30, 0.6) !important;
  border: 1px solid rgba(0, 229, 255, 0.1) !important;
  padding: 1rem !important;
  border-radius: 1.5rem !important;
  width: 100% !important;
  max-width: 400px !important;
}

.influencer-card img {
  border-radius: 1rem !important;
  margin-bottom: 1rem !important;
}

.hero__title-large,
.about-hero h1 {
  font-size: 2.4rem !important;
  line-height: 1.1 !important;
  font-weight: 300 !important;
  margin: 0 !important;
  width: 100% !important;
}

.hud {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hud__panel {
  width: 100% !important;
  background: rgba(10, 24, 30, 0.8) !important;
  border: 1px solid rgba(0, 229, 255, 0.1) !important;
  border-radius: 1.25rem !important;
  padding: 1.5rem !important;
  backdrop-filter: blur(10px) !important;
}

.hud__panel h2,
.hud__panel h3 {
  font-weight: 300 !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 1rem !important;
}

/* Стилізація кнопок агентів */
.agents-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin: 1rem 0 !important;
}

.agent-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(0, 229, 255, 0.1) !important;
  border-radius: 0.75rem !important;
  padding: 0.8rem !important;
  font-weight: 300 !important;
  text-align: center !important;
}

.hero__metrics {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  width: 100% !important;
  margin-top: 2rem !important;
}

/* --- Unified About Block --- */
.about-hero {
  padding: 12rem 2rem 6rem !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
}

.about-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 4rem !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.about-image {
  max-width: 500px !important;
  width: 100% !important;
  position: relative !important;
}

.about-image img {
  width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.2)) !important;
  animation: float 6s ease-in-out infinite !important;
}

.about-text h2 {
  font-size: 3.5rem !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  margin-bottom: 2rem !important;
  letter-spacing: -0.02em !important;
}

.highlight-text {
  font-size: 1.4rem !important;
  color: var(--color-accent) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 300 !important;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 2rem !important;
  }

  .about-text h2 {
    font-size: 2.5rem !important;
  }

  .about-image {
    order: -1 !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
}

/* Modal Form Fixes */
.modal-content {
  width: 95% !important;
  padding: 2rem 1.25rem !important;
}

/* --- Utilities --- */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
}

body.no-scroll {
  overflow: hidden;
}

/* --- AI Chat Assistant --- */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 20000;
  font-family: 'Manrope', sans-serif;
}

.chat-bubble {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-bubble:hover {
  transform: scale(1.1) rotate(5deg);
}

.chat-bubble svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 450px;
  background: rgba(10, 24, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 1.5rem;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.chat-window.active {
  display: flex;
  animation: chatAppear 0.3s ease;
}

@keyframes chatAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  padding: 1.25rem;
  background: rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-avatar {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--color-bg);
  border: 1px solid rgba(0, 229, 255, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  line-height: 0;
}

.chat-close:hover {
  background: rgba(255, 50, 50, 0.2);
  border-color: rgba(255, 50, 50, 0.4);
  color: #ff5252;
}

.chat-status h4 {
  font-size: 0.9rem;
  margin: 0;
  color: #fff;
}

.chat-status span {
  font-size: 0.7rem;
  color: var(--color-accent);
}

.chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.2);
  border-radius: 2px;
}

.msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 300;
}

.msg--ai {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 0.2rem;
}

.msg--user {
  background: var(--color-accent);
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 0.2rem;
  font-weight: 600;
}

.chat-input-area {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.85rem;
}

.chat-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.chat-send {
  background: var(--color-accent);
  border: none;
  border-radius: 0.75rem;
  padding: 0 1rem;
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 480px) {
  .chat-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .chat-window {
    width: calc(100vw - 2rem);
    height: 70vh;
    bottom: 70px;
  }
}

/* --- PREMIUM FORM STYLES (Added) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* Deep dark overlay */
  backdrop-filter: blur(15px);
  /* Strong blur */
  -webkit-backdrop-filter: blur(15px);
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  width: 90%;
  max-width: 480px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-dim);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-accent);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #fff;
}

.modal-header h2 span {
  color: var(--color-accent);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.modal-header p {
  color: var(--color-text-dim);
  font-size: 0.9rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.btn--submit {
  width: 100%;
  padding: 1.1rem;
  border: none;
  border-radius: 12px;
  background: var(--color-accent);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--submit:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.6);
}

/* --- MOBILE-FIRST HERO & LEAD FORM --- */
.hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding-top: 6rem;
  /* Header space */
  padding-bottom: 4rem;
  min-height: 85vh;
  /* Almost full screen on mobile */
  position: relative;
  overflow: hidden;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 5;
}

.hero-left p {
  font-size: 1rem;
  max-width: 90%;
  margin: 0 auto 2rem;
  color: var(--color-text-dim);
}

.hero-visual {
  width: 250px;
  height: 250px;
  margin: -50px auto -30px;
  /* Slight overlap */
  position: relative;
  z-index: 1;
}

.floating-hand {
  width: 100%;
  height: auto;
  animation: floatHero 6s ease-in-out infinite;
  filter: drop-shadow(0 -10px 40px rgba(0, 229, 255, 0.2));
  /* Fade out the bottom cut-off edge */
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

@keyframes floatHero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Glass Card */
.lead-card {
  background: rgba(13, 13, 13, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  width: 95%;
  max-width: 400px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.card-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
  letter-spacing: 0.1em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Inputs */
.input-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.neon-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1rem 1rem 1rem 2.8rem;
  /* Space for icon */
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.neon-input:focus {
  border-color: var(--color-accent);
  background: rgba(0, 229, 255, 0.05);
  outline: none;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* Full Width Button */
.btn--neon-full {
  width: 100%;
  padding: 1rem;
  background: var(--color-accent);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--neon-full:active {
  transform: scale(0.98);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.trust-badges {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--color-text-dim);
  display: flex;
  justify-content: space-between;
  opacity: 0.7;
}

/* Desktop Adaptation */
@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
    text-align: left;
    align-items: center;
    /* Вертикальне вирівнювання по центру */
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    /* Зменшений відступ зверху для ноутів */
    min-height: 100vh;
    /* Форма має вміщатись */
  }

  .hero-left {
    max-width: 50%;
    padding-left: 2rem;
  }

  .hero-visual {
    margin: 0;
    position: absolute;
    bottom: -50px;
    right: 45%;
    /* Position hand in middle */
    width: 350px;
    height: 350px;
  }

  .hero-right {
    max-width: 45%;
    margin-right: 2rem;
  }
}

/* --- Cookie Banner (Premium Glassmorphism) --- */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 600px);
  background: rgba(8, 18, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 2rem;
  padding: 1.5rem 2rem;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 2rem;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  line-height: 1.4;
  margin: 0;
}

.cookie-content span {
  color: var(--color-accent);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn--cookie {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn--accept {
  background: var(--color-accent);
  color: #000;
  border: none;
}

.btn--accept:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    bottom: -100%;
  }

  .cookie-banner.show {
    bottom: 1rem;
  }
}