body {
  font-family: "Poppins", sans-serif;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    url("../images/background-image-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 794px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-left: 32px;
  padding-right: 32px;
}

.hero-container {
  max-width: 1376px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 113px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 738px;
  transform: translateY(35px);
}

.hero-title {
  font-size: 64px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 18px;
  color: #eaeaea;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.btn-explore {
  padding: 14px 41.5px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-explore:hover {
  background: #e3e4e1;
  color: #212529;
  text-decoration: none;
}

/* Form Styles */
.hero-form {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 525px;
  max-width: 100%;
  transform: translateY(25px);
}

.hero-form-content {
  padding: 0px;
}

.form-first-name {
  margin-bottom: 16px;
}

.form-last-name {
  margin-bottom: 24px;
}

.form-email {
  margin-bottom: 16px;
}

.form-company {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 9px 16px;
  border: 1px solid #a5a5a5;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
  color: #232323;
}

.form-group input:focus {
  outline: none;
  border-color: #6b7c5d;
}

.form-group input::placeholder {
  color: #a5a5a5;
}

.btn-submit {
  width: fit-content;
  padding: 12px 48.5px;
  background: #d63b54;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Poppins", sans-serif;
  outline: none;
}

.btn-submit:hover {
  background: #c51f3a;
}

.btn-submit:focus {
  border: none;
  outline: none;
}

.form-captcha {
  margin-bottom: 24px;
}

.g-recaptcha {
  transform: scale(1);
  transform-origin: 0 0;
}

/* Problems We Solve Section */
.problems-section {
  padding: 72px 0;
  background: #ffffff;
}

.problems-container {
  max-width: 1443px;
  margin: 0 auto;
  padding: 0 32px;
}

.problems-header {
  text-align: start;
  margin-bottom: 40px;
}

.problems-subtitle {
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.problems-title {
  color: #232323;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0;
  font-family: Poppins;
  line-height: 150%;
  letter-spacing: 0%;
}

.problems-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.problem-card {
  background: #fafafa;
  padding: 16px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.problem-icon span {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.csv-icon {
  background: #f3d7d7;
}

.csv-icon span {
  color: #d63b54;
}

.api-icon {
  background: #fce5d6;
}

.api-icon span {
  color: #eb7e2a;
}

.problem-card-title {
  color: #232323;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: normal;
}

.problem-card-description {
  color: #9c9c9c;
  font-size: 14px;
  margin-bottom: 16px;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  margin-top: auto;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
  width: fit-content;
  opacity: 1 !important;
}

.csv-btn {
  background: #d63b54;
}

.csv-btn:hover {
  background: #c51f3a;
  color: #ffffff;
  text-decoration: none;
}

.api-btn {
  background: #d63b54;
}

.api-btn:hover {
  background: #c51f3a;
  color: #ffffff;
  text-decoration: none;
}

/* Mobile Responsive */

@media (max-width: 1100px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-form {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    height: auto;
    padding-top: 92px;
    padding-bottom: 0px;
    padding-left: 16px;
    padding-right: 16px;
    background: #ffffff;
    position: relative;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 653px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("../images/background-image-hero-mobile.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .hero-container {
    height: auto;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .hero-content {
    transform: translateY(0);
  }

  .hero-title {
    font-size: 48px;
    text-align: start;
    line-height: 150%;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 16px;
    text-align: start;
    margin-bottom: 0;
  }

  .btn-explore {
    display: none;
  }

  /* Form Styles */
  .hero-form {
    padding: 16px;
    transform: translateY(0);
    position: relative;
    width: 100%;
    max-width: 500px;
    box-shadow: none;
    border: 1px #cfcfcf solid;
    margin: 0 auto;
  }

  .g-recaptcha {
    transform: scale(0.97);
  }

  .btn-submit {
    width: 100%;
  }
  /* Problems Section */
  .problems-section {
    padding: 0 0;
  }

  .problems-header {
    margin-bottom: 24px;
  }

  .problems-title {
    font-size: 24px;
    line-height: 42px;
  }

  .problems-subtitle {
    font-size: 14px;
  }

  .problems-container {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 25px;
  }

  .problems-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
  }

  .problem-icon span {
    font-size: 14px;
  }

  .learn-more-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 48px;
    height: 48px;
    width: 100%;
    justify-content: center;
  }
}
