/* Signup Section Styles */
.signup-hero {
  padding: 100px 20px 0;
  margin: 0;
  background-color: #fffdf9;
}

@media only screen and (max-width: 991px) {
  .signup-hero {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 640px) {
  .signup-hero {
    padding: 48px 20px 24px;
  }
}

.signup-section {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}

.signup-container {
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .signup-container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
  }
}

.signup-content {
  width: 55%;
  padding: 0;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .signup-content {
    width: 60%;
    margin-right: auto;
    text-align: left;
  }
}

@media only screen and (max-width: 640px) {
  .signup-content {
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }
}

.signup-banner {
  margin-bottom: 24px;
}

.banner-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px 6px 8px;
  background-color: rgba(240, 241, 250, 1);
  border-radius: 49px;
  text-decoration: none;
  cursor: pointer;
  margin-right: auto;
}

@media only screen and (max-width: 640px) {
  .banner-link {
    margin: 0 auto;
  }
}

.banner-badge {
  display: inline-flex;
  border: 1px solid rgba(32, 21, 21, 1);
  border-radius: 20px;
  padding: 3px 8px;
  margin-right: 5px;
}

.badge-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(32, 21, 21, 1);
  line-height: 20px;
  margin: 0;
}

.banner-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(32, 21, 21, 1);
  line-height: 20px;
}

.signup-title {
  font-family: "Degular Display", sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: 1px;
  color: rgba(32, 21, 21, 1);
  margin: 0 0 24px 0;
  width: 90%;
}

@media only screen and (max-width: 991px) {
  .signup-title {
    font-size: 62px;
    margin-bottom: 16px;
    text-align: left;
  }
}

@media only screen and (max-width: 640px) {
  .signup-title {
    font-size: 62px;
    line-height: 85%;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.signup-description {
  font-family: Inter, sans-serif;
  font-size: 21px;
  line-height: 32px;
  color: rgba(32, 21, 21, 1);
  font-weight: 500;
  margin-bottom: 48px;
  width: 90%;
}

@media only screen and (max-width: 991px) {
  .signup-description {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
    text-align: left;
    max-width: 720px;
  }
}

@media only screen and (max-width: 640px) {
  .signup-description {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    width: 100%;
  }
}

.signup-buttons {
  margin-right: auto;
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 991px) {
  .signup-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media only screen and (max-width: 640px) {
  .signup-buttons {
    margin: 0 auto;
  }
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

@media only screen and (max-width: 640px) {
  .button-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.button-group {
  display: flex;
}

.btn {
  min-width: 272px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 12px 20px;
  box-sizing: border-box;
  font-family: Inter, Helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 250ms, border-color 250ms;
  text-align: center;
  min-height: 44px;
  cursor: pointer;
  border: 1px solid;
}

@media (min-width: 400px) {
  .btn {
    font-size: 18px;
    padding: 8px 20px;
  }
}

.btn-primary {
  color: #fffdf9;
  background-color: #ff4f00;
  border-color: #ff4f00;
}

.btn-primary:hover {
  background-color: #d24304;
  border-color: #d24304;
}

.btn-secondary {
  background-color: #fffdf9;
  color: #201515;
  border-color: #201515;
}

.btn-secondary:hover {
  background-color: #fffdf9;
  border-color: #201515;
  border-width: 2px;
}

.btn-icon {
  display: flex;
  padding: 4px;
  background-color: #fffdf9;
  border-radius: 8px;
}

/* Image container for signup hero */
.signup-hero figure {
  width: 45%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .signup-hero figure {
    width: 40%;
  }
}

@media only screen and (max-width: 640px) {
  .signup-hero figure {
    width: 100%;
    margin-bottom: 14px;
  }
}

.signup-hero figure img {
  width: 100%;
  border-radius: 16px;
  object-fit: contain;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  max-width: 100%;
}