:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --panel: #101010;
  --panel-2: #151515;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.18);
  --accent: #ff1e1e;
  --accent-dark: #a30000;
  --white-soft: rgba(255,255,255,0.06);
  --shadow: 0 24px 60px rgba(0,0,0,0.45);
  --radius: 24px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 0, 0, 0.10), transparent 24%),
    linear-gradient(180deg, #000 0%, #050505 45%, #090909 100%);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.76);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(255,0,0,0.22));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.10);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 700;
  transition: 0.25s ease;
}

.lang-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.lang-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: rgba(255,255,255,0.10);
}

.hero {
  position: relative;
  padding: 78px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.62)),
    url('../media/bg.jpg') center center / cover no-repeat;
  opacity: 0.50;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #f7d7d7;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--accent);
}

.lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.8;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255,0,0,0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255,0,0,0.30);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
}

.mini-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.mini-item strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.mini-item span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-shell {
  position: relative;
}

.video-glow {
  position: absolute;
  inset: 8% -10% -8% -10%;
  background:
    radial-gradient(circle, rgba(255,0,0,0.22) 0%, rgba(255,0,0,0.10) 36%, transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.video-card {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.48),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 60px rgba(255,30,30,0.14);
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.solutions-section {
  padding: 28px 0 70px;
}

.section-intro {
  max-width: 920px;
  margin-bottom: 30px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #f7d7d7;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.section-intro h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  filter: blur(18px);
  pointer-events: none;
}

.info-card.corporate {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    linear-gradient(145deg, rgba(22,22,22,0.95), rgba(8,8,8,0.95));
}

.info-card.startup {
  background:
    linear-gradient(145deg, rgba(110,0,0,0.82), rgba(18,18,18,0.96));
}

.card-topline {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.info-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 1.46rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.info-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,0.90);
  line-height: 1.8;
  font-size: 0.98rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: rgba(0,0,0,0.22);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-left strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 0 0 10px;
  max-width: 540px;
  color: var(--muted);
  line-height: 1.75;
}

.footer-left span {
  color: var(--muted);
}

.footer-left a {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-right a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  transition: 0.25s ease;
}

.footer-right a:hover {
  background: rgba(255,255,255,0.08);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(12px);
}

.cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-page {
  padding: 54px 0 80px;
}

.policy-wrap {
  max-width: 900px;
}

.policy-block {
  margin-top: 26px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.policy-block h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.policy-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-six {
    grid-template-columns: 1fr;
  }

  .video-card {
    width: min(100%, 390px);
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    padding-top: 44px;
  }

  .mini-highlights,
  .grid-six {
    grid-template-columns: 1fr;
  }

  .info-card,
  .policy-block {
    padding: 22px;
  }

  .video-card {
    width: min(100%, 340px);
    border-radius: 24px;
  }

  .lang-switch {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }
.cookie-banner {
  position: fixed !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 99999 !important;
}

.cookie-banner.hidden {
  display: none !important;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(12px);
}

.cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-text p {
  margin: 0;
  color: #b8b8b8;
  line-height: 1.7;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }
.policy-language-block {
  margin-top: 34px;
}

.policy-language-block h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.policy-language-block-en {
  margin-top: 54px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
}