/**
 * Homepage hero quick-order — matches FastGraduate style.css tokens
 * (primary #3a5998, glass surfaces, form__input / form__label, gold promo strip).
 */

#hero-form .hero-order-cta__title {
  margin: 0 0 clamp(0.5rem, 1.5vw, 0.65rem);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--color-text);
  text-align: center;
}

#hero-form .hero-order-cta__promo {
  display: grid;
  gap: clamp(0.5rem, 1.5vw, 0.65rem);
  margin-bottom: clamp(0.25rem, 1vw, 0.35rem);
}

/* Same spirit as the legacy hero “10% discount” gold bar */
#hero-form .hero-order-cta__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  background: #ffd700;
  color: #000;
  font-weight: 800;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

#hero-form .hero-order-cta__ribbon-icon {
  display: inline-flex;
  opacity: 0.9;
}

#hero-form .hero-order-cta__ribbon-icon i {
  font-size: 1.125rem;
}

#hero-form .hero-order-cta__extra {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: clamp(0.6875rem, 1.25vw, 0.75rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  text-align: center;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(58, 89, 152, 0.22);
  box-shadow: 0 2px 8px rgba(58, 89, 152, 0.06);
}

#hero-form .hero-order-cta__form {
  margin-top: 0.15rem;
}

#hero-form .hero-order-cta__group {
  gap: clamp(0.35rem, 1vw, 0.45rem);
}

#hero-form .hero-order-cta__label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#hero-form .hero-order-cta__glyph {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background: rgba(58, 89, 152, 0.1);
  border: 2px solid rgba(58, 89, 152, 0.2);
  box-shadow: 0 2px 8px rgba(58, 89, 152, 0.08);
}

#hero-form .hero-order-cta__glyph i {
  font-size: 0.95rem;
}

#hero-form .hero-order-cta__req {
  color: var(--color-primary);
  font-weight: 800;
}

#hero-form .hero-order-cta__label-row .form__label {
  margin: 0;
  flex: 1;
  min-width: 0;
}

#hero-form .hero-order-cta__submit {
  width: 100%;
  justify-content: center;
}

#hero-form .hero-order-cta__note {
  margin: 0;
  text-align: center;
  font-size: clamp(0.75rem, 1.35vw, 0.8125rem);
}

#hero-form .hero-order-cta__note i {
  margin-right: 0.35rem;
  color: var(--color-primary);
  opacity: 0.9;
}

#hero-form .hero-order-cta__phone-wrap {
  margin: 0.5rem 0 0;
  text-align: center;
}

#hero-form .hero-order-cta__phone-btn {
  width: 100%;
  justify-content: center;
}

#hero-form .hero-order-cta__fineprint {
  margin-top: clamp(0.35rem, 1.25vw, 0.5rem);
}

#hero-form .hero-order-cta__fineprint i {
  margin-right: 0.35rem;
  color: var(--color-primary);
  opacity: 0.85;
}

@media (max-width: 480px) {
  #hero-form .hero-order-cta__glyph {
    display: none;
  }

  #hero-form .hero-order-cta__label-row .form__label {
    padding-left: 0;
  }
}
