@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --blue: #0089f7;
  --blue-dark: #006edf;
  --ink: #161922;
  --muted: #626262;
  --soft: #f2f2f2;
  --page: #fcfcfc;
  --nav: #dde0e2;
  --line: #ebebeb;
  --footer: #0d0e14;
  --orange: #ff5f1f;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

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

.top-strip {
  height: 44px;
  color: #d7d7dc;
  background: #0d0e14;
  font-size: 15px;
}

.top-strip .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
}

.top-strip a {
  color: #fff;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--nav);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(221, 224, 226, 0.72);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-row {
  display: flex;
  align-items: center;
  min-height: 91px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin-left: auto;
  height: 91px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 0 21px;
  color: #1f2431;
  font-weight: 500;
  transition: color 160ms ease, background-color 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.2);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-left: 15px;
  font-weight: 700;
}

.language-current,
.language-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.language-current {
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  display: none;
  min-width: 170px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.language-switcher.open .language-menu {
  display: grid;
}

.language-option {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.language-option:hover,
.language-option.active {
  color: var(--blue);
  background: #f2f8ff;
}

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 25px;
  color: #fff;
  background: #ef233c;
  border-radius: 3px;
  font-size: 14px;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-option {
  text-align: right;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-8px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.hero {
  position: relative;
  min-height: 800px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(13, 16, 41, 0.9), rgba(13, 16, 41, 0.9)),
    url("../img/hero-bg.jpg") center / cover no-repeat;
}

.hero-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
}

.hero-layers img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 900px);
  opacity: 0.65;
  transform: translate(-50%, -50%);
  animation: float-soft 5s ease-in-out infinite;
}

.hero-layers img:nth-child(2) {
  width: min(74vw, 850px);
  transform: translate(calc(-50% + 45px), calc(-50% - 45px));
  animation-delay: 300ms;
}

.hero-layers img:nth-child(3) {
  width: min(94vw, 1150px);
  transform: translate(calc(-50% - 10px), calc(-50% - 20px));
  animation-delay: 600ms;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  text-align: center;
}

.hero h1 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 60px;
  font-weight: 500;
}

.hero p {
  margin: 22px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  margin-top: 34px;
  padding: 0 40px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #1999ff;
  transform: translateY(-1px);
}

.section {
  padding: 110px 0;
}

.section.compact {
  padding: 74px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  text-align: center;
}

.process-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.process-card img {
  width: 160px;
  height: 145px;
  object-fit: contain;
}

.process-card p {
  max-width: 360px;
  line-height: 1.7;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f4f4f4;
}

.split-panel > article {
  min-height: 548px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 80px;
  text-align: center;
}

.split-panel > article:nth-child(2) {
  background: #efefef;
}

.split-panel h2 {
  margin-bottom: 25px;
}

.split-panel h5,
.feature-text h5,
.contact-intro h5 {
  color: #677085;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.split-panel p {
  margin-top: 24px;
  line-height: 1.85;
}

.center-headline {
  padding: 95px 0 110px;
  text-align: center;
}

.center-headline h2 {
  font-size: 50px;
  font-weight: 700;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 58px;
  margin-bottom: 90px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-text h2 {
  margin-bottom: 26px;
}

.feature-media img,
.feature-media video {
  width: 100%;
  border-radius: 0;
}

.video-band {
  padding-top: 25px;
}

.video-frame {
  overflow: hidden;
  background: #000;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.timeline-wrap {
  max-width: 1090px;
  margin: 0 auto;
}

.page-title {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-bottom: 46px;
  text-align: center;
}

.page-title .line-icon {
  width: 56px;
  height: 56px;
  color: var(--blue);
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #f0f0f0;
  content: "";
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  min-height: 150px;
  align-items: start;
}

.timeline-item::before {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 4px solid var(--blue);
  background: #fff;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.timeline-year {
  justify-self: center;
  margin-top: 12px;
  padding: 2px 8px;
  background: #f7f7f7;
  border-radius: 3px;
  font-size: 13px;
}

.timeline-content {
  padding: 0 18px;
}

.timeline-content h3 {
  margin-bottom: 24px;
}

.timeline-content p {
  text-decoration: underline;
  text-decoration-color: #e1e1e1;
  text-underline-offset: 7px;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 3;
}

.timeline-item:nth-child(odd) .timeline-year {
  grid-column: 2;
}

.atlantis-panel {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: 92px;
  text-align: center;
}

.atlantis-panel img {
  width: min(100%, 1100px);
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.map-hero iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  align-items: start;
  padding: 40px 0 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-card svg {
  width: 44px;
  height: 44px;
  color: var(--blue);
}

.contact-card h4 {
  overflow-wrap: anywhere;
}

.address-title {
  max-width: 800px;
  margin: 10px auto 70px;
  text-align: center;
}

.contact-form-section {
  background: #f7f7f7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 46px;
  align-items: start;
}

.contact-intro {
  text-align: center;
}

.contact-intro h2 {
  margin-bottom: 24px;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 36px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: #626262;
  font-weight: 500;
}

.form-field.message {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: #626262;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

textarea {
  min-height: 220px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 0;
  color: var(--blue);
  background: #e9f5fc;
  border-color: #d5e5ee;
}

.submit-button {
  justify-self: start;
  min-height: 50px;
  margin-top: 10px;
  padding: 0 22px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 5px;
  font: inherit;
  cursor: pointer;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 28px;
  text-align: center;
}

.policy-content h2 {
  margin: 42px 0 16px;
  font-size: 28px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.site-footer {
  color: #c7c7cd;
  background: var(--footer);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
  padding: 92px 0 86px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 28px;
}

.footer-logo {
  width: 265px;
  margin-top: 34px;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact a {
  display: block;
  color: #c7c7cd;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.to-top {
  width: 36px;
  height: 36px;
  color: #82828a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 28px max(30px, calc((100vw - var(--container)) / 2));
  background: #eef2f5;
  box-shadow: 0 -12px 30px rgba(1, 7, 39, 0.09);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner img {
  width: 64px;
  height: 64px;
}

.cookie-banner p {
  line-height: 1.7;
}

.cookie-banner a {
  white-space: nowrap;
  color: var(--ink);
}

.cookie-banner button {
  min-height: 55px;
  padding: 0 25px;
  color: #fff;
  background: var(--blue-dark);
  border: 0;
  border-radius: 5px;
  font: inherit;
  cursor: pointer;
}

@keyframes float-soft {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: 12px;
  }
}

@media (max-width: 1050px) {
  .main-nav a {
    min-width: auto;
    padding: 0 18px;
  }

  .language-switcher {
    margin-left: 4px;
  }

  .split-panel > article {
    padding: 58px 40px;
  }

  .contact-layout {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 14px;
    line-height: 1.65;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .container {
    width: min(550px, calc(100% - 42px));
  }

  .top-strip {
    display: none;
  }

  .nav-row {
    min-height: 60px;
  }

  .brand {
    width: 160px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 12px;
  }

  .main-nav {
    position: fixed;
    inset: 60px 0 auto;
    display: none;
    height: auto;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 54px;
    padding: 0 24px;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-current {
    padding: 8px 10px;
  }

  .language-current > span:last-child {
    display: none;
  }

  .language-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  html[dir="rtl"] .language-menu {
    left: 50%;
    right: auto;
  }

  .hero {
    min-height: 318px;
  }

  .hero-content {
    width: min(320px, calc(100% - 36px));
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p,
  .hero .button {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section.compact {
    padding: 55px 0;
  }

  .process-grid,
  .split-panel,
  .feature-row,
  .contact-cards,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 54px;
  }

  .process-card p {
    max-width: 330px;
  }

  .split-panel > article {
    min-height: auto;
    padding: 58px 28px;
  }

  .split-panel h5,
  .feature-text h5,
  .contact-intro h5 {
    font-size: 17px;
  }

  .center-headline {
    padding: 64px 0 72px;
  }

  .center-headline h2 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .feature-row {
    gap: 28px;
    margin-bottom: 60px;
  }

  .feature-row.reverse .feature-media {
    order: 2;
  }

  .feature-row.reverse .feature-text {
    order: 1;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    grid-template-columns: 40px 1fr;
    min-height: auto;
  }

  .timeline-item::before {
    left: 14px;
  }

  .timeline-item:nth-child(even) .timeline-year,
  .timeline-item:nth-child(odd) .timeline-year {
    grid-column: 2;
    justify-self: start;
    margin: 0 0 12px;
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
    grid-row: auto;
    padding: 0 0 35px;
    text-align: left;
  }

  .atlantis-panel {
    margin-top: 40px;
  }

  .contact-card {
    grid-template-columns: 54px 1fr;
  }

  .address-title {
    margin-bottom: 48px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 44px;
    padding: 62px 0 60px;
  }

  .footer-bottom .container {
    min-height: 70px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 28px 28px 30px;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 318px;
  }

  .process-card p,
  .split-panel p,
  .split-panel h5,
  .feature-text h5 {
    overflow-wrap: anywhere;
  }

  .map-hero iframe {
    height: 360px;
  }

  .cookie-banner p {
    max-height: 230px;
    overflow: auto;
  }
}
