/* ========================================
   Signup Type Selection Page
   ======================================== */

.su-page {
  background: linear-gradient(180deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
  padding: 80px 0 120px;
  float: left;
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.su-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.su-content h4 {
  font-size: 18px;
  color: var(--muted-color);
  font-family: 'Yantramanav', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 12px;
}

.su-content h1 {
  font-family: 'Yantramanav', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 16px;
}

.su-subtitle {
  color: var(--body-color);
  font-size: 18px;
  margin-bottom: 50px;
}

/* === User Type Cards === */
.su-cards {
  display: flex;
  justify-content: center;
}

.su-card {
  display: block;
  text-align: center;
  padding: 50px 30px 40px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.su-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
  text-decoration: none;
  background: rgba(40, 162, 136, 0.04);
}

.su-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(0deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.su-card-icon i {
  font-size: 36px;
  color: var(--cta-text);
}

.su-card h2 {
  color: var(--heading-color);
  font-family: 'Yantramanav', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.su-card p {
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.su-card-cta {
  display: inline-block;
  color: var(--link-color);
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}

.su-card-cta i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.su-card:hover .su-card-cta i {
  transform: translateX(4px);
}

/* === Custom Quote Callout === */
.su-custom-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  max-width: 640px;
  margin: 50px auto 0;
  padding: 30px 36px;
  border: 1px solid rgba(40, 162, 136, 0.25);
  border-radius: 14px;
  background: rgba(40, 162, 136, 0.04);
}

.su-custom-quote > i {
  font-size: 28px;
  color: var(--link-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.su-custom-quote h3 {
  color: var(--heading-color);
  font-family: 'Yantramanav', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.su-custom-quote p {
  color: var(--body-color);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.su-custom-quote a {
  color: var(--link-color);
  font-family: 'Yantramanav', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.su-custom-quote a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

.su-custom-quote a i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.su-custom-quote a:hover i {
  transform: translateX(4px);
}

/* ========================================
   Responsive
   ======================================== */

@media only screen and (max-width: 1340px) {
  .su-page .container {
    max-width: calc(100% - 60px);
    padding: 0 15px;
  }
}

@media only screen and (max-width: 991px) {
  .su-content h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .su-page {
    padding: 50px 0 80px;
  }
  .su-content h1 {
    font-size: 34px;
  }
  .su-card {
    padding: 40px 20px 30px;
    margin-bottom: 20px;
  }
  .su-card h2 {
    font-size: 24px;
  }
  .su-custom-quote {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
}

@media only screen and (max-width: 480px) {
  .su-content h1 {
    font-size: 30px;
  }
  .su-card-icon {
    width: 64px;
    height: 64px;
  }
  .su-card-icon i {
    font-size: 28px;
  }
}
