* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #171717;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}


/* HEADER */

.header {
  border-bottom: 1px solid #e8e8e8;
  background: rgba(255,255,255,0.96);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

nav a {
  color: #555;
}

nav a:hover {
  color: #111;
}


/* HERO */

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}

.hero-content {
  padding-top: 40px;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #617079;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero-text {
  max-width: 640px;
  margin: 38px 0 0;
  font-size: 19px;
  color: #555;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid #171717;
  font-size: 14px;
  transition: 0.2s ease;
}

.primary {
  background: #171717;
  color: white;
}

.primary:hover {
  background: #333;
}

.secondary:hover {
  background: #f5f5f5;
}


/* SECTIONS */

.section {
  padding: 120px 0;
  border-bottom: 1px solid #e8e8e8;
}

.section-soft {
  background: #f7f8f7;
}

.grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 60px;
}

.section-number {
  font-size: 13px;
  color: #999;
}

h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.section-text {
  max-width: 700px;
  margin: 28px 0 0;
  color: #555;
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid #222;
  font-size: 15px;
}

.process {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  font-size: 15px;
}


/* FOOTER */

.footer {
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
}


/* MOBILE */

@media (max-width: 760px) {

  .container {
    width: min(100% - 30px, 1120px);
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 0;
  }

  h1 {
    font-size: 48px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 80px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
  }

}