:root {
  --bg: #12070a;
  --ink: #1b1114;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --soft: #f8fafc;
  --accent: #c1121f;
  --accent2: #7f0b13;
  --accent3: #e11d2e;
  --gold: #c8a760;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(35, 7, 11, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: 245px;
  object-fit: contain;
}

.brand__tagline {
  display: block;
  max-width: 230px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 650;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
  font-size: 14px;
}

.nav a { color: #243247; }
.nav a:hover { color: var(--accent); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-switch__btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 9px;
  cursor: pointer;
}

.lang-switch__btn.is-active {
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(225, 29, 46, 0.42), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(127, 11, 19, 0.42), transparent 30%),
    linear-gradient(135deg, #13070b 0%, #3a1017 56%, #090406 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 105px 0 88px;
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -0.045em;
}

.hero p,
.page-hero p {
  font-size: 19px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 30px;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
  color: #fff;
  box-shadow: 0 14px 36px rgba(193, 18, 31, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(193, 18, 31, 0.33);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section--light .btn--ghost,
.page-hero + .section .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 52px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.hero-stat strong { display: block; font-size: 18px; margin-bottom: 4px; }
.hero-stat span { color: rgba(255, 255, 255, 0.72); font-size: 14px; }

.section { padding: 82px 0; }
.section--light { background: var(--soft); }
.section--ink { background: #13070b; color: #fff; }
.section-header { max-width: 820px; margin-bottom: 38px; }

.section-header h2,
.split h2,
.disclaimer-box h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.035em;
}

.section-header p,
.split p,
.disclaimer-box p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.section--ink p { color: rgba(255, 255, 255, 0.78); }

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

.summary-card,
.panel,
.contact-form-card,
.contact-page-copy,
.process article,
.disclaimer-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.summary-card h3,
.panel h3,
.process h3 { margin: 0 0 10px; font-size: 21px; }
.summary-card p,
.panel p,
.process p { margin: 0; color: var(--muted); }

.section--ink .panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin: 12px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent3); font-weight: 900; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.disclaimer-box { text-align: center; max-width: 900px; }
.disclaimer-box p { margin: 0 auto 24px; max-width: 780px; }

.page-hero {
  background: linear-gradient(135deg, #13070b, #401019);
  color: #fff;
  padding: 82px 0;
}

.page-hero h1 { font-size: clamp(34px, 4vw, 56px); }
.page-hero a { color: #fff; text-decoration: underline; }

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

.process span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-data { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-data span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 800; margin-bottom: 5px; }
.contact-data strong { font-size: 18px; }

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group label,
.captcha-box__label { font-weight: 800; color: #26364f; }

.form-input {
  width: 100%;
  border: 1px solid #cdd7e6;
  border-radius: 15px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.12);
}

.form-textarea { min-height: 150px; resize: vertical; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff8f9;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.captcha-input { max-width: 160px; }
.form-consent { display: flex; align-items: flex-start; gap: 11px; color: #44536a; }
.btn--submit { width: 100%; border: 0; cursor: pointer; }

.form-alert { padding: 15px 16px; border-radius: 16px; margin-bottom: 20px; font-weight: 700; }
.form-alert--success { background: #e9fbf5; color: #0f6a4b; border: 1px solid #bdeedc; }
.form-alert--error { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }

.footer { background: #080305; color: #fff; padding: 34px 0; }
.footer__top,
.footer__bottom { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { color: rgba(255, 255, 255, 0.78); }
.footer__links a:hover { color: #fff; }
.footer__bottom { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.65); font-size: 14px; }

.legal-content { max-width: 900px; }
.legal-content h1 { font-size: 44px; line-height: 1.1; }
.legal-content h2 { margin-top: 34px; }
.legal-content p,
.legal-content li { color: #45546b; }
.panel--light { box-shadow: var(--shadow); }

@media (max-width: 950px) {
  .site-header__inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-wrap { width: 100%; flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav { overflow: auto; width: 100%; padding-bottom: 4px; }
}

@media (max-width: 850px) {
  .brand { width: 100%; }
  .brand__logo { height: 42px; max-width: 230px; }
  .brand__tagline { display: none; }
  .hero__content { padding: 78px 0; }
  .hero-stats,
  .summary-grid,
  .process,
  .contact-page-grid,
  .split,
  .form-row { grid-template-columns: 1fr; }
  .footer__top,
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .captcha-box { align-items: flex-start; flex-direction: column; }
  .captcha-input { max-width: none; }
}
