:root {
  --bg: #080808;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f8f6ef;
  --muted: rgba(248, 246, 239, 0.72);
  --line: rgba(248, 246, 239, 0.16);
  --red: #ff312e;
  --mint: #7df0d3;
  --yellow: #f7d95f;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 49, 46, 0.34), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(125, 240, 211, 0.25), transparent 26rem),
    linear-gradient(135deg, #080808 0%, #111215 52%, #080808 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.page {
  min-height: 100svh;
  display: grid;
}

.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 8vw, 92px);
}

.logo {
  width: 142px;
  height: auto;
}

.language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.language:hover {
  color: var(--text);
  border-color: var(--mint);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  align-items: start;
  gap: clamp(28px, 5vw, 58px);
}

.eyebrow,
.card-label {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(36px, 6vw, 70px);
}

.services article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.services article {
  min-height: 250px;
  padding: 22px;
}

.services span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.services p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact-card a {
  color: var(--text);
  font-weight: 850;
}

.contact-card a:not(.main-contact) {
  color: var(--muted);
}

.main-contact {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--mint);
}

address {
  margin: 10px 0 0;
  color: var(--muted);
  font-style: normal;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.socials a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

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

  .contact-card {
    position: static;
  }

  .services article {
    min-height: auto;
  }

  .services span {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .hero {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
  }

  .logo {
    width: 118px;
  }

  .contact-card,
  .services article {
    padding: 20px;
  }
}
