 :root {
  --navy: #03142d;
  --navy-2: #062653;
  --navy-3: #0a376f;
  --blue: #0b55b7;
  --gold: #d9a43b;
  --gold-2: #ffd979;
  --white: #ffffff;
  --text: #0b1f3a;
  --muted: #65748b;
  --soft: #f5f8fc;
  --line: #e7edf5;
  --shadow: 0 20px 50px rgba(3, 20, 45, .13);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
section { padding: 92px 7%; }
.container { max-width: 1180px; margin: 0 auto; }
.gold { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #05162f;
  box-shadow: 0 14px 28px rgba(217, 164, 59, .27);
  transition: .25s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(217, 164, 59, .34); }
.btn.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: none;
}

.section-title { text-align: center; margin-bottom: 46px; }
.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.section-title p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(3, 20, 45, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  height: 78px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .5px;
}
.brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.25));
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}
nav a { opacity: .92; transition: .2s; }
nav a:hover { color: var(--gold); opacity: 1; }
.nav-cta { padding: 10px 16px; border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #07162c; }
.hamburger { display: none; color: var(--white); font-size: 30px; cursor: pointer; background: none; border: 0; }

.hero {
  min-height: 100vh;
  padding: 132px 7% 120px;
  color: var(--white);
  display: flex;
  align-items: center;
  background: #061934;
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .62;
  filter: brightness(.72) saturate(1.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .45;
}
.hero::after {
  content: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 22px;
}
.hero p {
  max-width: 670px;
  font-size: 18px;
  color: #e6eef9;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.quick {
  margin-top: 0;
  position: relative;
  z-index: 4;
  padding: 72px 7% 0;
}
.quick-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.quick-item { text-align: center; padding: 20px 16px; }
.icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  color: var(--white);
  font-size: 25px;
  box-shadow: 0 10px 20px rgba(6,38,83,.25);
}
.quick-item h3 { font-size: 15px; text-transform: uppercase; margin-bottom: 6px; }
.quick-item p { color: var(--muted); font-size: 13px; }

.about-grid, .service-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 14px 38px rgba(3,20,45,.08);
}
.card h3 { font-size: 25px; color: var(--navy-2); margin-bottom: 12px; }
.card ul { margin-top: 16px; padding-left: 20px; }
.card li { margin: 8px 0; }

.dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(217,164,59,.12), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.dark .section-title p { color: #cbd8ec; }
.dark .card {
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.13);
  color: var(--white);
}
.dark .card h3 { color: var(--gold-2); }
.service-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.mini {
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}
.mini .icon { width: 48px; height: 48px; font-size: 20px; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step {
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 18px;
}
.num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(3,20,45,.06);
}
.stat h3 { color: var(--navy-2); font-size: 38px; line-height: 1; margin-bottom: 8px; }

.partners { background: #fff; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.partner-logo {
  min-height: 118px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(3,20,45,.06);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}
.partner-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-logo img {
  max-height: 84px;
  width: auto;
  object-fit: contain;
  margin: auto;
}

#kontak h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.18;
  margin-bottom: 14px;
}
.contact-subtitle {
  color: #cbd8ec;
  margin-bottom: 26px;
}
.contact-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }

footer {
  background: #020e20;
  color: var(--white);
  padding: 54px 7% 24px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 14px; }
footer h3 { margin-bottom: 12px; }
footer p, footer a { color: #cbd8ec; font-size: 14px; }
footer a:hover { color: var(--gold); }
.copy {
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #9fb0ca;
  font-size: 13px;
}


/* Hero video background */
.hero {
  background:
    linear-gradient(90deg, rgba(2, 13, 33, .92) 0%, rgba(4, 29, 66, .72) 48%, rgba(4, 29, 66, .42) 100%) !important;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 33, .88) 0%, rgba(4, 29, 66, .66) 48%, rgba(4, 29, 66, .34) 100%),
    linear-gradient(180deg, rgba(2, 13, 33, .36) 0%, rgba(2, 13, 33, .58) 100%);
}

.hero::before,
.hero::after,
.hero-video-overlay,
.hero-grid {
  z-index: 1;
}

.hero-grid {
  z-index: 2;
}
