.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 2px 8px rgba(10, 37, 64, 0.05); */
}
.container--no-shadow {
  box-shadow: none;
}
.container--no-margin {
  margin-bottom: 0;
}

/* register */
.register {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.register p {
  margin-bottom: 4px;
}
.register form {
  text-align: center;
  margin-top: 16px;
}

.division-line {
  width: 60%;
  height: 4px;
  background: var(--primary);
  margin: 40px auto 40px;
  border-radius: 2px;
}
p.lead {
  font-family: 'serif';
  text-align: left;
  max-width: 70%;
  color: var(--ink-700);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
small,
.muted {
  color: var(--ink-500);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  position: relative;
  width: 1200px;
  height: 80px;
}

.header__wrapper .brand {
  height: 32px;
  display: flex;
}
.header-section {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-section a {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--primary);
}
.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}
.kpi-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.kpi-label {
  color: var(--ink-700);
}
/* Section */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
.section h2 {
  max-width: 70%;
  margin: 0 auto;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.section h3 {
  max-width: 70%;
  margin: 0 auto 16px;
}
.section p {
  text-align: left;
  color: var(--ink-700);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}
.section p.less-separation {
  margin-bottom: 10px;
}
.section p.no-margin-bottom {
  margin-bottom: 0;
}
.section cta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.logos img {
  max-height: 42px;
  max-width: 220px;
  width: auto;
  height: auto;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}
.map-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legend {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #d32f2f;
}
.dot.blue {
  background: var(--accent);
}
.map-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
}
.small {
  font-size: 0.92rem;
  color: var(--ink-700);
}
/* Charts */
.charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.chart-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.chart-title {
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}
/* Footer */
/* Footer - RESET */
footer,
footer *,
.footer,
.footer * {
  border: 0 !important;
  list-style: none !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  font: inherit !important;
  vertical-align: baseline !important;
}

.footer {
  background-color: #f2f7f8;
}
.footer .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.5fr;
  align-items: center;
}

.footer .wrapper > ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
}
.footer .wrapper > ul li a {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-md);
  line-height: var(--text-md);
  color: var(--primary);
}

.footer .wrapper > img {
  height: 32px;
}

.footer .wrapper > p {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--text-md);
  text-align: right;
  color: #717680;
}

/* NEW LANDING */

/* WELCOME */
.welcome-container {
  margin: 0 auto;
  padding: 120px 0px;
  text-align: left;
}

.welcome-container .title {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-xl);
  line-height: var(--text-display-xl-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 16px;
  text-align: left;
}

.welcome-container .description-paragraph {
  max-width: 480px;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: var(--text-xl-line-height);
  color: var(--description);
  margin: 32px 0px;
}

.welcome-container .wrapper {
  display: grid;
  grid-template-columns: 1fr 512px;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-container .wrapper img {
  border-radius: 16px;
}

@media (max-width: 566px) {
  .welcome-container .wrapper img {
    width: 100%;
  }  
}

/* LEADING */
.leading-container {
  margin: 0 auto;
  padding: 120px 0px;
  text-align: left;
  background-color: #f2f7f8;
}

.leading-container .title {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-xl);
  line-height: var(--text-display-xl-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 16px;
  text-align: left;
}

.leading-container .description-paragraph {
  max-width: 480px;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: var(--text-xl-line-height);
  color: var(--description);
  margin: 32px 0px;
}

.leading-container .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stats-grid .stats-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats-card .number {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-md);
  line-height: var(--text-display-md-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
}
.stats-card .label {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--descri);
  letter-spacing: 0;
}

.leading-container .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.leading-container .wrapper .analytics-map-landing-react {
  max-width: 600px;
}

.leading-container .wrapper img {
  border-radius: 16px;
}

.leading-container .wrapper .under-text-map {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--descri);
  letter-spacing: 0;
}

/* FEATURES SECTION */
.features-section {
  margin: 0 auto;
  padding: 120px 0px;
  text-align: center;
}

.features-section .title {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-lg);
  line-height: var(--text-display-lg-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 16px;
}

.features-section .description-paragraph {
  max-width: 720px;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: var(--text-xl-line-height);
  color: var(--description);
  margin: 32px auto;
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 530px);
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 566px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.features-section .features-grid .title-featured {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: var(--text-lg-line-height);
  color: var(--primary);
  margin-bottom: 16px;
}

.features-section .features-grid ul.unordered-list {
  list-style-type: disc;
  padding-left: 20px;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--description);
  margin-bottom: 16px;
}

.features-section .button-group {
  display: flex;
  flex-wrap: wrap;
  max-width: 485px;
  gap: 16px;
  justify-content: center;
  margin: 60px auto 40px;
}

.features-section .button-group .anchor {
  font-family: Inter;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--primary);
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

/* SERVICES SECTION */
.services-section {
  padding: 120px 0px;
  text-align: left;
  background-color: #f2f7f8;
}

.services-section .wrapper {
  margin: 0 auto;
  max-width: 1280px;
}

.services-section .title {
  max-width: 770px;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-lg);
  line-height: var(--text-display-lg-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 16px;
}

.services-section .services-list {
  list-style-type: none;
  text-align: left;
  max-width: 360px;
  padding: 0;
  margin: 46px 0;
}

.services-section .service-item {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: var(--text-lg-line-height);
  color: var(--description);
  position: relative;
  padding-left: 34px;
  margin-bottom: 8px;
}

.services-section .service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 12C3 10.8181 3.23279 9.64778 3.68508 8.55585C4.13738 7.46392 4.80031 6.47177 5.63604 5.63604C6.47177 4.80031 7.46392 4.13738 8.55585 3.68508C9.64778 3.23279 10.8181 3 12 3C13.1819 3 14.3522 3.23279 15.4442 3.68508C16.5361 4.13738 17.5282 4.80031 18.364 5.63604C19.1997 6.47177 19.8626 7.46392 20.3149 8.55585C20.7672 9.64778 21 10.8181 21 12C21 14.3869 20.0518 16.6761 18.364 18.364C16.6761 20.0518 14.3869 21 12 21C9.61305 21 7.32387 20.0518 5.63604 18.364C3.94821 16.6761 3 14.3869 3 12ZM12 1.5C9.21523 1.5 6.54451 2.60625 4.57538 4.57538C2.60625 6.54451 1.5 9.21523 1.5 12C1.5 14.7848 2.60625 17.4555 4.57538 19.4246C6.54451 21.3938 9.21523 22.5 12 22.5C14.7848 22.5 17.4555 21.3938 19.4246 19.4246C21.3938 17.4555 22.5 14.7848 22.5 12C22.5 9.21523 21.3938 6.54451 19.4246 4.57538C17.4555 2.60625 14.7848 1.5 12 1.5ZM16.281 10.281C16.4218 10.1402 16.5009 9.94916 16.5009 9.75C16.5009 9.55084 16.4218 9.35983 16.281 9.219C16.1402 9.07817 15.9492 8.99905 15.75 8.99905C15.5508 8.99905 15.3598 9.07817 15.219 9.219L10.875 13.5645L8.781 11.469C8.71127 11.3993 8.62848 11.344 8.53738 11.3062C8.44627 11.2685 8.34862 11.2491 8.25 11.2491C8.15138 11.2491 8.05373 11.2685 7.96262 11.3062C7.87152 11.344 7.78873 11.3993 7.719 11.469C7.64927 11.5387 7.59395 11.6215 7.55621 11.7126C7.51848 11.8037 7.49905 11.9014 7.49905 12C7.49905 12.0986 7.51848 12.1963 7.55621 12.2874C7.59395 12.3785 7.64927 12.4613 7.719 12.531L10.344 15.156C10.4137 15.2258 10.4964 15.2813 10.5875 15.3191C10.6787 15.3569 10.7763 15.3763 10.875 15.3763C10.9737 15.3763 11.0713 15.3569 11.1625 15.3191C11.2536 15.2813 11.3363 15.2258 11.406 15.156L16.281 10.281Z" fill="%2300576E"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.services-section .service {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.services-section .service .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 60px;
}

.services-section .service h3 {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: var(--text-lg-line-height);
  color: var(--secondary);
  margin-bottom: 12px;
}

.services-section .service p {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--description);
}

/* PARTNERS SECTION */

.partners-section {
  margin: 0 auto;
  padding: 120px 0px;
  text-align: center;
}

.partners-section .title {
  max-width: 1216px;
  margin: 0 auto;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-lg);
  line-height: var(--text-display-lg-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 32px;
}

.partners-section .logos {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
}

/* TEAM SECTION */
.team-section {
  text-align: center;
}
.team-section .wrapper {
  padding: 120px 0px;
  margin: 0 auto;
  background-color: #f2f7f8;
}

.team-section .title {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-lg);
  line-height: var(--text-display-lg-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 64px;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.team-section .team-grid .card {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 280px;
}

.team-section .team-grid .card img {
  height: 280px;
  width: 280px;
  border-radius: var(--radius-lg);
  margin-bottom: 13px;
}
.team-section .team-grid .card h6 {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: var(--text-lg-line-height);
  color: var(--secondary);
  margin-top: 13px;
  margin-bottom: 0px;
}
.team-section .team-grid .card .role {
  font-family: var(--font-family-body);
  font-weight: 4500;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--description);
  margin-bottom: 10px;
  color: var(--primary);
}

.team-section .team-grid .card p {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  color: var(--description);
}

/* REGISTER SECTION */
.register-section {
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
  max-width: 100%;
  overflow-x: hidden;
}

.register-section .title {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-display-lg);
  line-height: var(--text-display-lg-line-height);
  letter-spacing: var(--text-letter-spacing-tight);
  color: var(--primary);
  margin-bottom: 32px;
}

.register-section .description-paragraph {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: var(--text-xl-line-height);
  color: var(--description);
  margin-top: 8px;
  margin-bottom: 28px;
}

.register-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
}

.register-section form .form-group {
  display: grid;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.register-section form .form-group label {
  font-family: var(--font-family-body);
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: var(--text-sm-line-height);
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.register-section form .form-group input,
.register-section form .form-group select {
  height: 44px;
  padding-left: 12px;
  padding-right: 12px;
  border: 1px solid #d5d7da;
  box-shadow: 0px 1px 2px 0px var(--ColorsEffectsShadowsshadow-xs);
  background-color: white;
  color: var(--placeholder);
  border-radius: var(--radius-md);
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.register-section form .form-group select {
  max-width: 100px;
}

.register-section .btn {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
  letter-spacing: 0;
}

.register-section form .form-group.first-group {
  grid-template-columns: 100px repeat(2, 1fr);
}
.register-section form .form-group.second-group {
  grid-template-columns: repeat(2, 1fr);
}

.register-section form .form-group.third-group {
  grid-template-columns: 1fr;
}

/* FIX SCROLLING */
#market-map,
#services,
#team {
  scroll-margin-top: 100px;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .welcome-container .wrapper,
  .leading-container .wrapper,
  .footer .wrapper {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .logos {
    grid-template-columns: 1fr;
    row-gap: 36px;
    margin-top: 48px;
  }

  .services-section .services-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .services-section .wrapper {
    padding: 10px;
  }

  .features-section {
    padding: 10px;
  }

  .partners-section .logos {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .team-section .team-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .team-section .team-grid .card {
    margin: 0 auto;
    padding: 10px;
  }

  .unordered-list {
    text-align: left;
  }

  .nav {
    min-width: -webkit-fill-available;
    margin: 2rem auto !important;
    padding: 0 1rem !important;
    /* margin-left: 40px;
    margin-right: 40px; */
  }
  .terms-conditions {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 18px;
  }
  .terms-conditions p {
    margin-bottom: 0;
  }
  /* HIDE CTA IN MOBILE MODE */
  .nav-cta {
    display: none;
  }
  /* MOBILE MENU  */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  /* WHEN MENU IS OPEN */
  .nav-links.open {
    right: 0;
  }
  /* LINKS IN THE MOBILE MENU */
  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--ink-900);
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: var(--color-primary-500);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* OVERLAY WHEN MENU IS OPEN */
  .nav-links.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: calc(-280px + -9vw);
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  /* ADJUST HEADER FOR MOBILE MODE */
  .header .container {
    justify-content: space-between;
    align-items: center;
  }

  .container {
    padding: 40px;
  }
}

@media (max-width: 900px) {
  /* .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
  }
  .nav-links.open {
    display: flex;
  } */
}

@media (max-width: 768px) {
  /* Responsive register form for tablets and small screens */
  .register-section {
    padding: 80px 20px;
  }

  .register-section form {
    max-width: 100%;
  }

  .register-section form .form-group.first-group {
    grid-template-columns: 100px 1fr;
  }

  .register-section form .form-group.first-group label:first-child {
    grid-column: 1 / -1;
  }

  .register-section form .form-group.second-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cta .inputs {
    grid-template-columns: 1fr;
  }

  /* Responsive register form */
  .register-section {
    padding: 80px 20px;
  }

  .register-section form {
    max-width: 100%;
    padding: 0 10px;
  }

  .register-section form .form-group.first-group,
  .register-section form .form-group.second-group,
  .register-section form .form-group.third-group {
    grid-template-columns: 1fr;
  }

  .register-section form .form-group select {
    max-width: 100%;
  }

  .register-section .title {
    font-size: var(--text-display-md);
  }

  .register-section .description-paragraph {
    font-size: var(--text-lg);
  }
}
