@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700;900&display=swap");

:root {
  --ink: #202020;
  --muted: #777;
  --gold: #c29a66;
  --dark: #202020;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 14px;
}

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

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

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 31px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 7px 2px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  transform: skewY(-18deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 6px;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 12px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  height: 78px;
  align-items: center;
  white-space: nowrap;
}

.main-nav a.active:after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

.language-switch {
  height: 32px;
  padding: 0 4px;
  appearance: none;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: 32px;
  cursor: pointer;
}

.language-switch span {
  margin: 0 6px;
  color: #aaa;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 442px;
  color: #fff;
  background: url("../images/Banner-PC.png") center 48% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 25, 0.72), rgba(8, 17, 27, 0.15) 72%),
    linear-gradient(0deg, rgba(5, 15, 25, 0.38), transparent 48%);
}

.hero-content {
  position: relative;
  padding-top: 130px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #e1c39e;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

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

h1 {
  color: #e8c9a0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.hero-lead {
  margin-top: 5px;
  font-size: 21px;
}

.hero-text {
  margin-top: 20px;
  color: #e2e5e8;
  font-size: 13px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  min-width: 120px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  margin-top: 18px;
  background: #d1ac7d;
  color: #fff;
}

.button-gold {
  margin-top: 17px;
  padding: 0 20px;
  background: #c5a06e;
  color: #fff;
}

.section {
  padding: 26px 0 30px;
}

.section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section-heading h2 {
  font-size: 23px;
  line-height: 1.3;
}

.section-heading p {
  margin-top: 1px;
  color: #999;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.section-heading i {
  display: block;
  width: 16px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold);
}

.section-heading-left {
  align-items: flex-start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 15px;
}

.service-card {
  min-height: 229px;
  padding: 20px 15px 13px;
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  text-align: center;
}

.service-icon {
  display: block;
  height: 55px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.service-card h3 {
  margin-top: 6px;
  font-size: 15px;
}

.service-card small {
  display: block;
  margin-top: 4px;
  color: #888;
  font-family: Montserrat, sans-serif;
  font-size: 8px;
}

.service-card p {
  margin-top: 16px;
  color: #666;
  font-size: 10px;
  line-height: 1.7;
}

.service-card a {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 20px;
}

.about {
  display: grid;
  grid-template-columns: 46% 54%;
  width: min(1200px, calc(100% - 54px));
  margin: 0 auto;
  min-height: 286px;
  background: #f8f8f7;
}

.about-image {
  position: relative;
  min-height: 286px;
  background:
    linear-gradient(rgba(18, 42, 59, 0.08), rgba(18, 42, 59, 0.08)),
    url("../images/about.png") center / cover no-repeat;
  filter: saturate(0.75);
}

.about-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(170px, 48%);
  height: auto;
  transform: translate(-50%, -50%);
}

.about-copy {
  padding: 28px 38px 24px;
}

.about-copy > p {
  max-width: 560px;
  margin-top: 14px;
  color: #555;
  font-size: 11px;
  line-height: 1.75;
}

.about-copy > p + p {
  margin-top: 9px;
}

.stats {
  margin-top: 40px;
  padding: 28px 0;
  color: #fff;
  background: #202020;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid #4b4b4b;
}

.stat:last-child {
  border: 0;
}

.stat-icon {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 38px;
}

.stat div {
  display: flex;
  flex-direction: column;
}

.stat strong {
  color: var(--gold);
  font-family: Montserrat, sans-serif;
  font-size: 27px;
  line-height: 1;
}

.stat small {
  margin-top: 5px;
  font-size: 11px;
}

.stat em {
  color: #aaa;
  font-size: 8px;
  font-style: normal;
}

.partners {
  padding: 20px 0 21px;
}

.partner-list {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.partner-list strong {
  white-space: nowrap;
}

.partner-arrow {
  color: #aaa;
  font-size: 31px;
  font-weight: 300;
}

.wolt {
  color: #41b8ea;
  font-family: cursive;
  font-size: 31px;
}

.euro {
  font-family: Georgia, serif;
  font-size: 23px;
}

.euro small,
.waterfront small,
.aik small {
  display: block;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.waterfront {
  color: #24556b;
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1;
}

.aik {
  color: #4d947e;
  font-size: 19px;
}

.aik span {
  color: #a6b8b1;
}

.huawei {
  color: #252525;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.site-footer {
  width: 100%;
  margin: 0 auto;
  padding: 18px 0 0;
  color: #ddd;
  background: #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.35fr 1.5fr;
  gap: 42px;
  padding-bottom: 18px;
}

.footer-logo-link {
  display: block;
  width: max-content;
  margin-bottom: 10px;
}

.footer-logo {
  display: block;
  width: 120px;
  height: auto;
}

.footer-grid .brand-copy strong {
  font-size: 15px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: #ccc;
  font-size: 10px;
  line-height: 1.85;
}

.footer-grid h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.footer-brand p {
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 11px;
}

.socials a {
  display: block;
  width: 18px;
  height: 18px;
  color: #bbb;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.socials img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  border-top: 1px solid #3c3c3c;
  color: #aaa;
  font-size: 9px;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }

  .container {
    width: min(100% - 40px, 700px);
  }

  .hero-content {
    padding-top: 130px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    gap: 25px;
  }
}

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

  .nav-wrap {
    min-height: 68px;
  }

  .nav-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 9px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: #fff;
  }

  .main-nav {
    position: absolute;
    top: 62px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 12px 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(26, 35, 43, 0.98);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    height: auto;
    padding: 12px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a.active:after {
    display: none;
  }

  .language-switch {
    width: 100%;
    height: 42px;
    margin-top: 10px;
    padding: 0 14px;
    border: 1px solid rgba(194, 154, 102, 0.65);
    border-radius: 7px;
    color: #e5c59b;
    background: rgba(194, 154, 102, 0.12);
    font-size: 12px;
    line-height: normal;
    text-align: center;
  }

  .language-switch option {
    color: #222;
    background: #fff;
  }

  .hero {
    min-height: 500px;
    background-position: 64% center;
  }

  .hero-content {
    padding-top: 152px;
  }

  .eyebrow {
    font-size: 17px;
  }

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

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

  .hero-text {
    font-size: 11px;
  }

  .hero-text br {
    display: none;
  }

  .section {
    padding: 25px 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card {
    min-height: 220px;
    padding: 15px 8px 10px;
  }

  .service-card h3 {
    font-size: 13px;
  }

  .service-card p {
    font-size: 9px;
  }

  .about {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .about-image {
    min-height: 220px;
  }

  .about-copy {
    padding: 28px 20px 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .stat {
    min-height: 56px;
  }

  .stat:nth-child(2) {
    border: 0;
  }

  .stat strong {
    font-size: 22px;
  }

  .stat-icon {
    font-size: 29px;
  }

  .partner-list {
    gap: 11px;
    overflow: hidden;
  }

  .partner-list strong {
    transform: scale(0.75);
  }

  .partner-arrow {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 18px;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    text-align: right;
  }
}
