.gs-section { padding-top: 3em; padding-bottom: 4em; }
.gs-inner { max-width: 720px; }
.gs-app { font-family: var(--wb-font-body); }

.gs-step { animation: gs-fade-in 0.4s ease; }
@keyframes gs-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gs-step-title {
  font-family: var(--wb-font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.6em;
  line-height: 1.15;
  color: var(--wb-dark);
}
.gs-step-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--wb-text);
  margin: 0 0 1.2em;
}
.gs-step-lead--small {
  font-size: 0.95rem;
  color: var(--wb-text-light, #6b7280);
}

.gs-form { display: block; }
.gs-field {
  display: block;
  margin-bottom: 1.2em;
}
.gs-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wb-text-light, #6b7280);
  margin-bottom: 0.5em;
}
.gs-field input[type="text"],
.gs-field input[type="email"],
.gs-field input[type="number"],
.gs-field textarea,
.gs-input-slot input[type="text"],
.gs-input-slot input[type="number"],
.gs-input-slot textarea {
  width: 100%;
  padding: 0.85em 1em;
  border: 1px solid #d1d5db;
  border-radius: var(--wb-radius-md, 8px);
  font-family: var(--wb-font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--wb-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gs-field input:focus,
.gs-field textarea:focus,
.gs-input-slot input:focus,
.gs-input-slot textarea:focus {
  border-color: var(--service-accent, #86ad12);
  box-shadow: 0 0 0 3px rgba(134, 173, 18, 0.15);
}
.gs-field textarea,
.gs-input-slot textarea { resize: vertical; min-height: 100px; }

.gs-code-input {
  font-size: 1.5rem !important;
  letter-spacing: 0.5em;
  text-align: center;
  font-weight: 600;
}

.gs-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6em;
  margin-top: 1.5em;
}
.gs-btn {
  display: inline-block;
  padding: 0.85em 1.6em;
  border: none;
  border-radius: var(--wb-radius-md, 8px);
  font-family: var(--wb-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.gs-btn--primary {
  background: var(--service-accent, #86ad12);
  color: #fff;
}
.gs-btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.gs-btn--primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.gs-btn--skip {
  background: transparent;
  color: var(--wb-text-light, #6b7280);
  border: 1px solid #d1d5db;
}
.gs-btn--skip:hover { background: #f3f4f6; }

.gs-error {
  color: #b91c1c;
  margin: 0.8em 0 0;
  font-size: 0.95rem;
}

.gs-progress {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.5em;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wb-text-light, #6b7280);
}
.gs-progress::before {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--service-accent, #86ad12), transparent);
  border-radius: 2px;
}
.gs-progress-text { font-weight: 600; }

.gs-question {
  font-family: var(--wb-font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wb-dark);
  margin: 0 0 1.4em;
}

.gs-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6em;
}
@media (min-width: 640px) {
  .gs-options { grid-template-columns: 1fr 1fr; }
}
.gs-option {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.85em 1em;
  border: 1px solid #d1d5db;
  border-radius: var(--wb-radius-md, 8px);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.98rem;
}
.gs-option:hover { border-color: var(--service-accent, #86ad12); background: #fafafa; }
.gs-option input { accent-color: var(--service-accent, #86ad12); }
.gs-option--selected {
  border-color: var(--service-accent, #86ad12);
  background: rgba(134, 173, 18, 0.06);
}

.gs-paraphrase {
  margin: 0 0 1.5em;
  padding: 1.2em 1.4em;
  background: #f8fafc;
  border-left: 4px solid var(--service-accent, #86ad12);
  border-radius: 0 var(--wb-radius-md, 8px) var(--wb-radius-md, 8px) 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--wb-dark);
  font-style: normal;
}

.gs-loading {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #d1d5db;
  border-top-color: var(--service-accent, #86ad12);
  border-radius: 50%;
  animation: gs-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.4em;
}
@keyframes gs-spin { to { transform: rotate(360deg); } }

/* Stack the footer cluster above the homepage's fixed hero */
.wb-getstarted,
.wb-footer,
.wb-copyright { position: relative; z-index: 1; }

/* Get Started feature section (above footer) */
.wb-getstarted {
  overflow: hidden;
  background: linear-gradient(135deg, #0c1420 0%, #1a2c4a 50%, #0c1420 100%);
  color: #fff;
  padding: 5em 1.5em 5em;
}
.wb-getstarted-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.wb-getstarted-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: wsFloat 14s ease-in-out infinite;
}
.wb-getstarted-shape.ws-1 {
  width: 380px; height: 380px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, #86ad12 0%, transparent 70%);
}
.wb-getstarted-shape.ws-2 {
  width: 320px; height: 320px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, #13a4c3 0%, transparent 70%);
  animation-delay: -5s;
}
.wb-getstarted-shape.ws-3 {
  width: 260px; height: 260px;
  top: 40%; right: 25%;
  background: radial-gradient(circle, #ea7a1e 0%, transparent 70%);
  opacity: 0.3;
  animation-delay: -9s;
}
@keyframes wsFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}
.wb-getstarted-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.wb-getstarted-eyebrow {
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: 999px;
  background: rgba(134, 173, 18, 0.15);
  border: 1px solid rgba(134, 173, 18, 0.4);
  color: #b6d44a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.wb-getstarted-title {
  font-family: var(--wb-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.7em;
  color: #fff;
}
.wb-getstarted-emph {
  background: linear-gradient(90deg, #86ad12, #b6d44a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.wb-getstarted-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2em;
  max-width: 640px;
}
.wb-getstarted-lead em { color: #b6d44a; font-style: normal; font-weight: 600; }
.wb-getstarted-points {
  list-style: none;
  margin: 0 auto 2.4em;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2em 2em;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}
.wb-getstarted-points li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5em;
  max-width: 32ch;
  text-align: left;
  line-height: 1.45;
}
.wb-getstarted-points i {
  color: #86ad12;
  font-size: 1rem;
  flex: 0 0 auto;
  margin-top: 0.25em;
}
.wb-getstarted-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
}
.wb-getstarted-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1em 2em;
  background: #86ad12;
  color: #fff;
  font-family: var(--wb-font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--wb-radius-md, 8px);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(134, 173, 18, 0.35);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.wb-getstarted-btn:hover {
  background: #95c014;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(134, 173, 18, 0.5);
}
.wb-getstarted-btn i { transition: transform 0.2s; }
.wb-getstarted-btn:hover i { transform: translateX(3px); }
.wb-getstarted-or {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}
@media (max-width: 600px) {
  .wb-getstarted { padding: 3.5em 1.2em; }
  .wb-getstarted-points { flex-direction: column; align-items: center; gap: 0.6em; }
}

/* Hero entry link on homepage / contact */
.gs-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1em;
  padding: 0.7em 1.3em;
  background: rgba(134, 173, 18, 0.15);
  border: 1px solid rgba(134, 173, 18, 0.4);
  color: #fff;
  border-radius: var(--wb-radius-md, 8px);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.gs-hero-cta:hover { background: rgba(134, 173, 18, 0.3); }
