:root {
  --bg: #e8e8e8;
  --surface: #f5f5f5;
  --surface-2: #ffffff;
  --text: #2f4a58;
  --muted: #5e7f8f;
  --primary: #2d95c7;
  --primary-soft: #72c3e1;
  --mint: #67b58d;
  --border: #c8d8df;

  --font-sans: "Nunito", system-ui, sans-serif;
  --font-tech: "Space Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  max-width: 1320px;
  margin: 0 auto;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.14);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 245, 245, 0.92);
  backdrop-filter: blur(10px);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  color: var(--primary);
}

.nav__logo-name {
  margin: 0;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav__logo-tagline {
  margin: 0;
  font-family: var(--font-tech);
  color: var(--muted);
  font-size: 0.8rem;
}

.nav__menu {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.nav__menu a {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__lang {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  color: var(--muted);
}

.nav__lang .active {
  color: var(--primary);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
}

.btn--ghost {
  border-color: var(--border);
  color: var(--primary);
  background: #fff;
}

.nav__cta {
  font-size: 0.8rem;
}

.nav__hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  padding: 4.8rem 1.25rem 3rem;
  background: linear-gradient(170deg, #dce4e8 0%, #edf1f3 78%);
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: stretch;
}

.hero__content {
  flex: 1 1 auto;
  max-width: 680px;
  background: rgba(245, 245, 245, 0.74);
  border: 1px solid rgba(200, 216, 223, 0.9);
  border-radius: 0.9rem;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__media {
  flex: 0 0 clamp(290px, 34vw, 430px);
  width: clamp(290px, 34vw, 430px);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(44, 74, 88, 0.16);
  justify-self: end;
}

.hero__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 56% top;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--mint);
  font-family: var(--font-tech);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.hero__accent {
  display: block;
  color: var(--text);
}

.hero__accent-part {
  display: inline-block;
  white-space: nowrap;
}

.hero__body,
.section__intro {
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.7;
}

.hero__region {
  font-family: var(--font-tech);
  color: var(--primary);
  font-size: 0.76rem;
  margin: 1rem 0 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section {
  padding: 4rem 1.25rem;
}

.section--white {
  background: var(--surface-2);
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards--4 {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}

.cards--4 .card {
  height: 100%;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary-soft);
  border-radius: 0.8rem;
  padding: 1.2rem;
}

.card__tag {
  font-family: var(--font-tech);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  color: var(--mint);
  margin: 0 0 0.6rem;
}

.card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.richtext p {
  margin: 0 0 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-richtext h2,
.legal-richtext h3 {
  margin-top: 2rem;
}

.legal-richtext h2:first-of-type,
.legal-richtext h3:first-of-type {
  margin-top: 1.2rem;
}

.bullet-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.bullet-list li {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  padding: 0.9rem 1rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  margin-right: 0.7rem;
}

.contact-card {
  background: linear-gradient(160deg, #ffffff, #eef5f8);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 1.1rem 1.2rem;
}

.contact-card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  vertical-align: middle;
}

.contact-linkedin__icon {
  flex-shrink: 0;
  display: block;
}

.footer {
  padding: 2.4rem 1.25rem 1.3rem;
  background: #dfe4e7;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer__brand {
  margin: 0;
  font-weight: 800;
  color: var(--primary);
}

.footer__tagline {
  margin: 0.3rem 0 0;
  font-family: var(--font-tech);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer__contact {
  font-style: normal;
  line-height: 1.7;
  color: var(--muted);
}

.footer__copy {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-tech);
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .split,
  .footer__inner,
  .cards--4 {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    flex-direction: column;
    align-items: center;
  }

  .hero__content {
    width: min(700px, 100%);
    max-width: 700px;
  }

  .hero__media {
    width: min(380px, 72vw);
    flex: 0 0 auto;
  }
}

@media (max-width: 760px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f5f5f5;
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 1rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: inline-block;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero__media {
    width: min(330px, 78vw);
  }

  .hero__content {
    width: 100%;
    background: rgba(245, 245, 245, 0.84);
  }

  .hero__photo {
    object-position: 60% top;
  }
}
