/* ── Get Started ── */

.gs-section {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
}

.gs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.gs-left {
  padding-top: 0.5rem;
}

.gs-left .eyebrow {
  margin-bottom: 1.75rem;
}

.gs-heading {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.gs-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.gs-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1.1rem 1.25rem;
  background: rgba(34, 197, 94, 0.05);
  border: 0.5px solid rgba(34, 197, 94, 0.15);
  border-radius: 10px;
  margin-bottom: 2.5rem;
}

.gs-trust i {
  font-size: 18px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.gs-trust p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.gs-next-heading {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.gs-next-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gs-next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gs-next-num {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: #22c55e;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gs-next-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.gs-next-text strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.gs-right {
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2.25rem;
}

.gs-form-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.2px;
}

.gs-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gs-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gs-field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gs-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}

.gs-input,
.gs-select {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.gs-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.gs-input:focus,
.gs-select:focus {
  border-color: rgba(34, 197, 94, 0.4);
}

.gs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.gs-select option {
  background: #182435;
  color: #e2e2dc;
}

.gs-submit {
  margin-top: 0.5rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
}

.gs-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gs-privacy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.gs-privacy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.gs-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  color: #22c55e;
  font-size: 18px;
  text-align: center;
}

.gs-success i {
  font-size: 40px;
}

.gs-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.gs-success p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.gs-error {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  text-align: center;
}

.gs-error a {
  color: #22c55e;
  text-decoration: none;
}

@media (max-width: 768px) {
  .gs-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.25rem;
  }

  .gs-field--row {
    grid-template-columns: 1fr;
  }
}
