@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #0A1628;
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

.bg-graphic {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-52%);
  width: 62%;
  opacity: 0.055;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,158,117,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,158,117,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1D9E75, #0F6E56 60%, transparent);
}

.nav {
  position: relative;
  z-index: 10;
  padding: 36px 56px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 96px;
}

.nav-contact {
  font-size: 13px;
  font-weight: 400;
  color: #888780;
  letter-spacing: 0.04em;
}

.nav-contact a {
  color: #1D9E75;
  text-decoration: none;
  font-weight: 500;
}

.content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 0;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #1D9E75;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #1D9E75;
}

h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0A1628;
  margin-bottom: 28px;
}

h1 em {
  font-style: normal;
  color: #1D9E75;
}

.sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: #5F5E5A;
  max-width: 560px;
  margin-bottom: 44px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(29,158,117,0.4);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1D9E75;
  letter-spacing: 0.02em;
  text-decoration: none;
  width: fit-content;
}

.contact-pill svg { width: 16px; height: 16px; opacity: 0.7; }

.country {
  display: inline-block;
  margin-left: 14px;
  font-size: 11px;
  font-weight: 500;
  color: #B4B2A9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.stat {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-30%);
  z-index: 10;
  text-align: right;
}

.stat-num {
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(29,158,117,0.08);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(29,158,117,0.3);
  text-transform: uppercase;
}

.benefits {
  position: relative;
  z-index: 10;
  margin-top: auto;
  border-top: 1px solid rgba(10,22,40,0.08);
  background: #F7F6F3;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.benefit {
  padding: 26px 18px;
  border-right: 1px solid rgba(10,22,40,0.07);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.benefit:last-child { border-right: none; }

.benefit-icon {
  width: 26px; height: 26px;
  color: #1D9E75;
  margin-bottom: 4px;
}

.benefit-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0A1628;
  line-height: 1.3;
  text-transform: uppercase;
}

.benefit-sub {
  font-size: 11px;
  font-weight: 300;
  color: #888780;
  line-height: 1.4;
}
@media (max-width: 780px){
  .nav {
    padding: 28px 10px 10px 15px;
  }
  .nav-logo {
    max-width: 60%;
    width: 240px;
    height: auto;
  }
    .content {
      padding: 30px 24px 90px 24px;
    }
    .country {
      display: block;
      white-space: nowrap;
      padding: 4px 0;
    }
  .stat {
    top: auto;
    bottom: 520px;
  }
  .bg-graphic {
    top: auto;
    bottom: 460px;
    right: 5%;
    opacity: 0.1;
    width: 90%;
  }
  .benefits {
    display: block;
  }
  .benefit {
    display: block;
    float: left;
    width: 50%;
    height: 130px;
    border-bottom: 1px solid rgba(10,22,40,0.07);
  }
}
