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


:root {
  --color-dark:        #063634;
  --color-teal:        #0e5a57;
  --color-accent:      #31f7f0;
  --color-white:       #ffffff;
  --color-placeholder: #d9d9d9;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Satoshi', sans-serif;
  background-color: var(--color-dark);
  color: var(--color-white);
}


.inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 6px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-teal);
}

.btn--white:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}


.hero {
  position: relative;
  width: 100%;
  background-color: var(--color-dark);
  min-height: 1074px;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}


.hero__header {
  position: relative;
  z-index: 10;
}

.hero__header .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 65px;
}

.hero__header .btn {
  margin-top: 38px;
  flex-shrink: 0;
}


.logo {
  display: block;
  width: 240px;
  height: 136px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}


.hero__content {
  position: relative;
  z-index: 10;
}

.hero__content .inner {
  padding-top: 198px;
  padding-bottom: 120px;
}

.hero__headline {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 47.49px;
  line-height: 1.18;
  color: var(--color-white);
  max-width: 722px;
}

.hero__headline .accent {
  color: var(--color-accent);
}

/* Headline h=192, body y=227 → gap = 227-192 = 35px */
.hero__body-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-white);
  max-width: 577px;
  margin-top: 35px;
}

/* Body y=227, h=90, ends at 317. Button y=361 → gap = 361-317 = 44px */
.hero__cta {
  margin-top: 44px;
}


.services {
  width: 100%;
  background-color: var(--color-teal);
  min-height: 885px;
}

.services .inner {
  padding-top: 86px;
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: 750px 690px;
  align-items: start;
}

/* Left column */
.services__left {
  padding-right: 60px;
}

.services__heading {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.15;
  color: var(--color-white);
  max-width: 645px;
}

/* Heading y=86, h=146, ends 232. Body y=267 → gap = 35px */
.services__body-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-white);
  max-width: 577px;
  margin-top: 35px;
  margin-bottom: 64px; /* body ends 387, first dot y=451 → gap = 64px */
}

/* List: dots at y=451, 508, 565, 622, 679 (57px apart)
   First dot at y=451; section padding-top=86, heading+body ≈ 365px
   so we let flexbox handle the gap naturally */
.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services__list li {
  display: flex;
  align-items: center;
  gap: 17px; /* dot=41px + gap=17px = text starts at 58px, matching Figma x=58 */
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  line-height: 1.3;
  min-height: 41px;
}

.service-dot {
  flex-shrink: 0;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.service-dot img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Right column — image
   Figma: x=750, y=59, w=690, h=735, border-radius=10px
   section padding-top=86, image y=59 → margin-top = 59-86 = -27px */
.services__image {
  width: 690px;
  height: 735px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-top: -27px;
  flex-shrink: 0;
  display: block;
}


.footer {
  width: 100%;
  background-color: var(--color-dark);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  text-align: center;
}


/* Tablet landscape — collapse services grid */
@media (max-width: 1200px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services .inner {
    grid-template-columns: 1fr;
  }

  .services__left {
    padding-right: 0;
  }

  .services__image {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border-radius: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero__header .inner {
    padding-top: 28px;
    justify-content: center;
  }

  /* Hide nav button, logo centred */
  .hero__header .btn {
    display: none;
  }

  .logo {
    width: 180px;
    height: 100px;
  }

  .hero__content .inner {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .hero__headline {
    font-size: 30px;
  }

  .hero__body-text {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero__cta {
    margin-top: 32px;
  }

  .services .inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .services__image {
    width: 100%;
    height: 280px;
    margin-top: 32px;
    border-radius: 10px;
  }

  .services__heading {
    font-size: 32px;
  }

  .services__list li {
    font-size: 18px;
  }

  .footer {
    height: auto;
    padding: 12px 20px;
  }

  .footer p {
    font-size: 12px;
  }
}
