:root {
  --green: #4cb05d;
  --white: #ffffff;
  --text-dark: #101820;
  --text-light: rgba(255, 255, 255, 0.9);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Geologica', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-image: url('img/bg_photo.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  position: relative;
}
.green-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 440px;
  background-image: url('img/green_gradient.svg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.ellipse{
  position: absolute;
  bottom: 0;
  left: 400px;
  width: 640px;
  height: 440px;
  overflow: hidden;
  background-image: url('img/ellipse.svg');
  background-repeat: no-repeat;
  background-position: top;
  z-index: 1;
}
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}
.tagline-card {
  width: 680px;
  height: calc(100vh - 180px);
  border-radius: 200px;
  background: radial-gradient(118.87% 117.52% at 89% 8%,rgba(137.74827575683594, 255, 176.83216857910156, 0) 3%,rgba(52.990440368652344, 206.22972106933594, 104.07019805908203, 1) 50%,rgba(39.8035888671875, 165.12789916992188, 135.99789428710938, 1) 84%);
  color: var(--text-light);
  padding: 120px 100px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.tagline-main {
  color: rgba(255, 255, 255, 1);
  font-family: 'Geologica', sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 120%;
  /*letter-spacing: -0.02em;*/
  text-align: left;
  margin-left: -6px;
}
.tagline-sub {
  color: rgba(255, 255, 255, 1);
  font-family: 'Geologica', sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 140%;
  /*letter-spacing: -0.01em;*/
  text-align: left;
}
.info-panel {
  width: 100%;
  min-height: 180px;
  height: 180px;
  background: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.info-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 0 48px;
}
.info-segment {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon-with-text {
  flex: 1 1 320px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-badge img {
  width: 40px;
  height: 40px;
  display: block;
}
.segment-title {
  margin: 0;
  color: rgba(143, 149, 165, 1);
  font-family: 'Geologica', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 128%;
  /*letter-spacing: -0.01em;*/
  text-align: left;
  max-width: 400px;
}
.narrative {
  flex: 1 1 280px;
}
.narrative-name {
  margin: 0 0 8px 0;
  color: rgba(0, 0, 0, 1);
  font-family: 'Geologica', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  /*letter-spacing: -0.02em;*/
  text-align: left;
}
.narrative-contact {
  margin: 0 0 8px 0;
  color: rgba(0, 0, 0, 1);
  font-family: 'Geologica', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 120%;
  /*letter-spacing: -0.02em;*/
  text-align: left;
}
.narrative-contact:last-child {
  margin-bottom: 0;
}
.logo-block {
  flex: 0 0 224px;
  align-items: center;
}
.logo-block img {
  width: 206px;
  height: 92px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  body {
    background-image: url('img/bg_mobile.jpg');
    background-size: cover;
    background-position: top;
  }
  .hero {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
  }
  .tagline-card {
    width: 100%;
    height: 224px;
    min-height: 224px;
    padding: 44px;
    border-radius: 64px;
    position: static;
    top: auto;
    left: auto;
    margin: 0;
  }
  .info-panel {
    width: 100%;
    height: auto;
    border-radius: 64px;
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
  }
  .info-content {
    flex-direction: column;
    align-items: stretch;
    padding: 44px;
    gap: 24px;
  }
  .icon-badge{
    display: none;
  }
  .info-segment {
    flex: auto;
    align-items: start;
  }
  .icon-with-text{
    flex-direction: inherit;
  }
  .logo-block img {
    width: 144px;
    height: 64px;
    object-fit: contain;
  }
  .ellipse{
    display: none;
  }
  .green-gradient{
    height: 90%;
  }
  .tagline-main {
    font-size: 48px;
  }
  .tagline-sub {
    font-size: 16px;
    max-width: 400px;
  }
  .segment-title {
    font-size: 14px;
  }
  .narrative-name {
    font-size: 24px;
  }
  .narrative-contact {
    font-size: 16px;
  }
}

@media (max-width: 380px) {

  .tagline-card {
    padding: 24px;
    border-radius: 40px;
    height:180px;
    min-height: 180px;
  }
  .info-content {
    gap: 20px;
  }
  .info-panel {
    border-radius: 40px;
  }
  .info-content {
    padding: 24px;
  }
}
