/* =========================
   Hero layout
   ========================= */

.signup .hero {
  padding: 4rem 1rem;
}

.signup .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.signup .hero-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.signup .hero-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 520px;
}

.signup .hero-content .btn-primary {
  margin-top: 1.5rem;
}

.signup .btn-primary {
  display: inline-block;
  background-color: #2563eb;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn-primary:hover {
  background-color: #1e4fd8;
}

/* Visual */
.signup .hero-visual img {
  max-width: 520px;
}

.signup .step-inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: #ffffff;
  border-radius: 8px;
}

.signup .form-group {
  margin-bottom: 1.25rem;
}

.signup .form-group input {
  width: 100%;
  padding: 0.6rem 0.65rem;
  font-size: 0.95rem;  
  border: 1px solid #ccc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.signup .form-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  outline: none;
}

.signup .form-group small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #666;
}

.signup .step-alt {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #555;
}

.signup .step-alt a {
  color: #2563eb;
  font-size: 0.9rem;
}

.signup .step-header {
  margin-bottom: 2rem;
}

.signup .step-meta {
  font-size: 0.85rem;
  color: #6b7280; /* soft grey */
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Progress bar container */
.signup .step-bar {
  width: 100%;
  height: 4px;
  background-color: #e5e7eb; /* light grey */
  border-radius: 2px;
  overflow: hidden;
}

/* Filled bar */
.signup .step-bar-fill {
  height: 100%;
  background-color: #2563eb; /* your primary blue */
  border-radius: 2px;
  transition: width 0.3s ease;
}

.signup .billing-toggle {
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.signup .billing-toggle label {
  font-weight: 500;
}

.signup .billing-toggle small {
  display: block;
  margin-left: 1.25rem;
  color: #6b7280;
  font-size: 0.85rem;
}

/* Step widths */
.signup .step-1 { width: 33%; }
.signup .step-2 { width: 66%; }
.signup .step-3 { width: 100%; }


.signup .billing-toggle {
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.signup .review-block {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.signup .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signup .review-header h2 {
  font-size: 1rem;
  margin: 0;
}

.signup .review-header a {
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
}

.signup .review-header a:hover {
  text-decoration: underline;
}

.signup .success-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* =========================
   Mobile adjustments
   ========================= */
@media (max-width: 768px) {
  .signup .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .signup .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}