:root {
  --page: #090908;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --soft: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.16);
  --orange: #ff9900;
  --orange-strong: #ff7a00;
  --green: #27d17f;
  --surface: rgba(18, 18, 16, 0.82);
  --surface-strong: #121210;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(9, 9, 8, 0.82);
  border-bottom: 1px solid rgba(255, 153, 0, 0.32);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 153, 0, 0.12);
  color: var(--ink);
}

.private-link {
  border: 1px solid rgba(255, 153, 0, 0.72);
  background: rgba(255, 153, 0, 0.12);
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: min(840px, 94vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(22px, 5vw, 82px) 84px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: clamp(22px, 6vw, 96px);
  bottom: clamp(42px, 8vw, 112px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.08);
  content: "EUROPE";
  font-size: clamp(56px, 12vw, 180px);
  font-weight: 950;
  letter-spacing: 0;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.68);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.98) 0%, rgba(9, 9, 8, 0.86) 46%, rgba(9, 9, 8, 0.28) 100%),
    radial-gradient(circle at 20% 34%, rgba(255, 153, 0, 0.26), transparent 30%),
    linear-gradient(0deg, rgba(9, 9, 8, 0.58), rgba(9, 9, 8, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding-left: clamp(0px, 2vw, 26px);
  border-left: 5px solid var(--orange);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-slogan {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(28px, 4.2vw, 66px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slogan span:first-child {
  color: var(--orange);
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.hero-lead {
  width: min(680px, 100%);
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 900;
}

.hero-support {
  width: min(650px, 100%);
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.32;
  font-weight: 650;
}

.hero-contact {
  margin-top: 20px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 750;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.primary-button {
  background: var(--orange);
  color: #16100a;
  box-shadow: 0 18px 46px rgba(255, 153, 0, 0.24);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.intro-band,
.content-section,
.process-band,
.contact-section,
.site-footer {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 153, 0, 0.28);
  border-top: 1px solid rgba(255, 153, 0, 0.36);
  border-bottom: 1px solid rgba(255, 153, 0, 0.36);
}

.intro-band div {
  min-height: 132px;
  padding: 28px;
  background: var(--surface-strong);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: var(--orange);
  font-size: 23px;
  line-height: 1.1;
}

.intro-band span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.content-section,
.process-band,
.contact-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.section-heading {
  width: min(780px, 100%);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.item-grid article,
.steps li {
  padding: 24px;
  border: 1px solid rgba(255, 153, 0, 0.26);
  border-radius: var(--radius);
  background: var(--surface);
}

.item-grid article {
  border-top: 4px solid var(--orange);
}

.item-grid p,
.steps p,
.contact-section p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.process-band {
  background:
    linear-gradient(135deg, rgba(255, 153, 0, 0.08), transparent 45%),
    #10100f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 153, 0, 0.82);
  border-radius: var(--radius);
  color: var(--orange);
  font-weight: 950;
}

.steps strong {
  display: block;
  font-size: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(255, 153, 0, 0.24);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 153, 0, 0.24);
}

.site-footer span:first-child {
  color: var(--orange);
  font-weight: 950;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 780px;
    padding-top: 172px;
  }

  .hero::after {
    display: none;
  }

  .intro-band,
  .item-grid,
  .steps,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  .hero-slogan {
    font-size: clamp(28px, 10vw, 46px);
  }

  .hero-lead {
    font-size: 23px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
