:root {
  --bg: #0b1220;
  --bg-soft: #111a2e;
  --text: #172033;
  --muted: #5d687a;
  --white: #ffffff;
  --line: #e6e9ef;
  --accent: #c9182b;
  --accent-dark: #a31323;
  --card: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f8fb;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

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

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 26px;
  font-weight: 900;
}

.logo {
  display: block;
  color: var(--accent);
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-sub {
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(201, 24, 43, 0.22);
}

.btn:hover { background: var(--accent-dark); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: none;
}

.btn-small {
  padding: 9px 15px;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 11, 19, 0.92), rgba(7, 11, 19, 0.55), rgba(7, 11, 19, 0.25)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.tagline,
.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin: 0 0 10px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.lead {
  max-width: 720px;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
}

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

.stats {
  margin-top: -55px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(17,26,46,0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stats-grid div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child { border-right: none; }

.stats strong {
  display: block;
  font-size: 24px;
  margin-bottom: 3px;
}

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

.section {
  padding: 86px 0;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 26, 46, 0.06);
}

.service-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.card h3 { margin-top: 0; }

.europe {
  background: #101827;
  color: var(--white);
}

.europe p {
  color: rgba(255,255,255,0.82);
}

.europe-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.photo-stack {
  position: relative;
  padding-bottom: 80px;
}

.photo-main {
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.photo-small {
  position: absolute;
  width: 48%;
  right: 24px;
  bottom: 0;
  border: 8px solid #101827;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}

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

.banner {
  color: white;
  text-align: center;
  padding: 90px 0;
  background:
    linear-gradient(rgba(7, 11, 19, 0.78), rgba(7, 11, 19, 0.78)),
    url("https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.banner h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin: 0 0 10px;
}

.banner p {
  color: rgba(255,255,255,0.86);
  margin-bottom: 28px;
}

.contact {
  background: var(--bg);
  color: var(--white);
}

.contact h2 { color: var(--white); }

.contact p { color: rgba(255,255,255,0.82); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
}

.contact-box {
  background: var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 28px;
}

.contact-box p,
.contact-box a {
  color: var(--text);
}

.contact-box a {
  text-decoration: underline;
}

footer {
  background: #070b13;
  color: rgba(255,255,255,0.75);
  padding: 24px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 980px) {
  nav { display: none; }

  .stats-grid,
  .cards,
  .europe-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
  }

  .stats-grid {
    border-radius: 0;
    width: 100%;
  }

  .stats-grid div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 610px;
  }

  .section {
    padding: 62px 0;
  }

  .photo-small {
    position: static;
    width: 100%;
    margin-top: 18px;
    border: none;
  }

  .photo-stack {
    padding-bottom: 0;
  }

  .footer {
    flex-direction: column;
  }
}
