@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --bg-main: #1b1d20;
  --text-main: #f2f2f2;
  --text-soft: #8c9096;
  --line: #2a2e33;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}


/* test*/
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */

.header {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
}

.logo-text {
  letter-spacing: 6px;
  font-size: 13px;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--text-soft);
  margin-left: 14px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.lang-switch button:hover {
  color: #fff;
}

/* HERO */

.hero {
  padding: 140px 0;
  max-width: 800px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 30px;
}

.hero p {
  font-size: 18px;
  color: var(--text-soft);
}

/* SECTIONS */

.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: 28px;
  margin-bottom: 80px;
}

/* ABOUT */

.about-line {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin-bottom: 40px;
}

.about-text {
  max-width: 700px;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-soft);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

.service-number {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 10px;
  letter-spacing: 2px;
  display: block;
}

.services-grid h3 {
  font-size: 22px;
  font-weight: 400;
}

/* CONTACT */

.contact-content p {
  margin-bottom: 14px;
  color: var(--text-soft);
}

.contact-content a {
  color: var(--text-soft);
  text-decoration: none;
}

.contact-content a:hover {
  color: #fff;
}

/* ACCENT */

.accent {
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.accent p {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 2px;
  max-width: 800px;
  margin: auto;
  color: #fff;
}

/* FOOTER */

footer {
  padding: 80px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
}

/* RESPONSIVE */

@media(max-width: 900px){

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}
