/* ================================================================
   GET STARTED — 3-Step Wizard
   ================================================================ */

:root { --nav-h: 72px; }

/* ── Page base ── */
.gs-page { background: #d9daeb; }

/* ── Nav title (replaces logo on get-started page) ── */
.gs-nav-title {
  font-family: 'Neue Power', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #01033E;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

/* ================================================================
   WIZARD LAYOUT
   ================================================================ */
.gs-wizard-section {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: #d9daeb;
}

.gs-wizard-wrap {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: calc(100vh - var(--nav-h));
  align-items: start;
  gap: 28px;
  padding: 32px 36px 72px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ================================================================
   SIDEBAR — Dark floating card
   ================================================================ */
.gs-sidebar {
  background: #111827;
  border-radius: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  max-height: calc(100vh - var(--nav-h) - 64px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: none;
}
.gs-sidebar::-webkit-scrollbar { display: none; }

.gs-sidebar-logo {
  display: block;
  margin-bottom: 28px;
  text-decoration: none;
  flex-shrink: 0;
}

/* "APPLICATION STEPS" map label */
.gs-sidebar-map-label {
  font-family: 'General Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 0 6px;
  flex-shrink: 0;
}

/* ── Step list ── */
.gs-sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gs-sb-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 0.2s;
  cursor: default;
}
.gs-sb-step.active {
  background: rgba(255, 255, 255, 0.06);
}

.gs-sb-indicator {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gs-sb-num {
  font-family: 'General Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-sb-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gs-sb-name {
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.gs-sb-desc {
  font-family: 'General Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.16);
  transition: color 0.3s ease;
  line-height: 1.45;
}

/* Active step */
.gs-sb-step.active .gs-sb-indicator {
  background: #0033FF;
  border-color: #0033FF;
  box-shadow: 0 4px 16px rgba(0, 51, 255, 0.45);
}
.gs-sb-step.active .gs-sb-num { color: #ffffff; }
.gs-sb-step.active .gs-sb-name { color: #ffffff; font-weight: 700; }
.gs-sb-step.active .gs-sb-desc { color: rgba(255, 255, 255, 0.46); }

/* Done step */
.gs-sb-step.done .gs-sb-indicator {
  background: rgba(34, 196, 134, 0.14);
  border-color: rgba(34, 196, 134, 0.28);
}
.gs-sb-step.done .gs-sb-name { color: rgba(255, 255, 255, 0.46); }
.gs-sb-step.done .gs-sb-desc { color: rgba(255, 255, 255, 0.22); }

/* Connector line */
.gs-sb-connector {
  width: 1.5px;
  height: 18px;
  background: rgba(255, 255, 255, 0.07);
  margin-left: 23px; /* center-align under 32px indicator + 8px left pad */
  flex-shrink: 0;
  transition: background 0.4s ease;
}
.gs-sb-connector.done {
  background: rgba(34, 196, 134, 0.28);
}

/* Sidebar footer */
.gs-sidebar-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'General Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  padding-left: 8px;
}
.gs-sidebar-foot a {
  color: rgba(128, 125, 254, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.gs-sidebar-foot a:hover { color: #807DFE; }

/* ================================================================
   RIGHT PANEL
   ================================================================ */
.gs-panel {
  background: transparent;
  min-height: calc(100vh - var(--nav-h) - 64px);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* White content wrapper — holds section header + form card */
.gs-content-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 52px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: calc(100vh - var(--nav-h) - 64px);
}

/* ── Section header (sits above the form card) ── */
.gs-section-hdr {
  width: 100%;
  max-width: 660px;
  padding: 0 0 28px;
}

.gs-sec-label {
  font-family: 'General Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #0033FF;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.gs-sec-title {
  font-family: 'Neue Power', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #01033E;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 8px;
}

.gs-sec-sub {
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  color: rgba(1, 3, 62, 0.48);
  line-height: 1.6;
  margin: 0 0 20px;
}

.gs-prog-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 51, 255, 0.10);
  border-radius: 100px;
  overflow: hidden;
}

.gs-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #01033E 0%, #0033FF 100%);
  border-radius: 100px;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Mobile progress bar — hidden; section header handles all sizes ── */
.gs-mob-bar { display: none; }

/* ================================================================
   FORM CARD
   ================================================================ */
.gs-form-card {
  width: 100%;
  max-width: 660px;
  background: transparent;
  padding: 0;
  position: relative;
  overflow: visible;
}

/* ================================================================
   SCREENS / TRANSITIONS
   ================================================================ */
.gs-screen { display: none; }
.gs-screen.active {
  display: block;
  animation: gsSlideIn 0.35s ease forwards;
}
.gs-screen.exit {
  display: block;
  animation: gsSlideOut 0.25s ease forwards;
}
.gs-screen.back-enter { animation: gsSlideInBack 0.35s ease forwards; }

@keyframes gsSlideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gsSlideInBack {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gsSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-28px); }
}

/* ================================================================
   FORM FIELDS
   ================================================================ */
.gs-field { margin-bottom: 20px; }

.gs-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #01033E;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Two-column row for first/last name */
.gs-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Optional tag */
.gs-optional {
  font-size: 11px;
  font-weight: 500;
  color: rgba(1, 3, 62, 0.38);
  background: rgba(1, 3, 62, 0.05);
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 2px;
}

/* Text / email / url inputs */
.gs-input {
  width: 100%;
  padding: 13px 16px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  color: #01033E;
  background: #ffffff;
  border: 0.6px solid rgba(1, 3, 62, 0.18);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.gs-input::placeholder { color: rgba(1, 3, 62, 0.28); }
.gs-input:focus {
  border-color: #0033FF;
  box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.10);
}

/* Textarea */
.gs-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.65;
}

/* Error message */
.gs-error-msg {
  font-family: 'General Sans', sans-serif;
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  display: none;
}
.gs-field.has-error .gs-error-msg { display: block; }
.gs-field.has-error .gs-input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

/* ================================================================
   OPTION ROWS (replaces chips + radio cards)
   ================================================================ */
.gs-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.gs-option {
  flex: 1;
  min-width: 110px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fafafa;
  border: 0.6px solid rgba(1, 3, 62, 0.14);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-align: left;
  outline: none;
}
.gs-option:hover {
  background: rgba(0, 51, 255, 0.03);
  border-color: rgba(0, 51, 255, 0.28);
}
.gs-option.selected {
  background: rgba(0, 51, 255, 0.05);
  border-color: #0033FF;
}
.gs-field.has-error .gs-option:not(.selected) {
  border-color: rgba(239, 68, 68, 0.25);
}

/* Radio dot */
.gs-option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 3, 62, 0.22);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.18s, background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-option-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.18s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gs-option.selected .gs-option-dot {
  background: #0033FF;
  border-color: #0033FF;
}
.gs-option.selected .gs-option-dot::after {
  opacity: 1;
  transform: scale(1);
}

.gs-option-label {
  font-family: 'General Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(1, 3, 62, 0.62);
  transition: color 0.15s;
  line-height: 1.3;
}
.gs-option.selected .gs-option-label {
  color: #0033FF;
  font-weight: 600;
}

/* Longer-text option groups (solutions) — stack vertically */
#chips-solutions .gs-option {
  min-width: 200px;
}

/* ================================================================
   CUSTOM DROPDOWN
   ================================================================ */
.gs-dropdown { position: relative; }

.gs-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 16px;
  background: #ffffff;
  border: 0.6px solid rgba(1, 3, 62, 0.18);
  border-radius: 12px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  color: #01033E;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.gs-dropdown-trigger:hover {
  border-color: rgba(1, 3, 62, 0.30);
}
.gs-dropdown.open .gs-dropdown-trigger {
  border-color: #0033FF;
  box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.10);
}
.gs-field.has-error .gs-dropdown-trigger {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.gs-dd-value { flex: 1; }
.gs-dd-value.placeholder { color: rgba(1, 3, 62, 0.30); }

.gs-dd-arrow {
  opacity: 0.35;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}
.gs-dropdown.open .gs-dd-arrow {
  transform: rotate(180deg);
  opacity: 0.55;
}

.gs-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #ffffff;
  border: 0.6px solid rgba(1, 3, 62, 0.12);
  border-radius: 14px;
  padding: 6px;
  box-shadow:
    0 4px 6px rgba(1, 3, 62, 0.04),
    0 12px 40px rgba(1, 3, 62, 0.12);
  display: none;
}
.gs-dropdown.open .gs-dropdown-menu {
  display: block;
  animation: gsDropIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.gs-dd-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(1, 3, 62, 0.68);
  background: transparent;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  text-align: left;
  transition: background 0.14s, color 0.14s;
  outline: none;
}
.gs-dd-item:hover {
  background: rgba(0, 51, 255, 0.05);
  color: #01033E;
}
.gs-dd-item.selected {
  color: #0033FF;
  font-weight: 600;
}
.gs-dd-item.selected::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #0033FF;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   PHONE FIELD
   ================================================================ */
.gs-phone-wrap {
  display: flex;
  border: 1.5px solid rgba(1, 3, 62, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.gs-phone-wrap:focus-within {
  border-color: #0033FF;
  box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.10);
}
.gs-country-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: rgba(1, 3, 62, 0.04);
  border: none;
  border-right: 1.5px solid rgba(1, 3, 62, 0.10);
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #01033E;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.gs-country-trigger:hover { background: rgba(1, 3, 62, 0.07); }
.gs-country-flag { font-size: 16px; }
.gs-country-dial { font-size: 13px; color: #01033E; }
.gs-chevron { opacity: 0.38; transition: transform 0.2s; }
.gs-country-trigger.open .gs-chevron { transform: rotate(180deg); }
.gs-phone-input {
  flex: 1;
  padding: 13px 16px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  color: #01033E;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0 10px 10px 0;
}
.gs-phone-input::placeholder { color: rgba(1, 3, 62, 0.28); }

/* ── Country dropdown ── */
.gs-country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 300;
  background: #ffffff;
  border: 1.5px solid rgba(1, 3, 62, 0.10);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(1, 3, 62, 0.15);
  width: 280px;
  overflow: hidden;
  display: none;
}
.gs-country-dropdown.open {
  display: block;
  animation: gsDropIn 0.2s ease;
}
@keyframes gsDropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gs-country-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(1, 3, 62, 0.07);
}
.gs-country-search-wrap svg { opacity: 0.32; flex-shrink: 0; }
.gs-country-search {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  color: #01033E;
  background: transparent;
}
.gs-country-search::placeholder { color: rgba(1, 3, 62, 0.32); }
.gs-country-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(1,3,62,0.12) transparent;
}
.gs-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13px;
}
.gs-country-item:hover { background: rgba(0, 51, 255, 0.06); }
.gs-country-item-name { flex: 1; color: #01033E; }
.gs-country-item-dial { color: rgba(1, 3, 62, 0.42); font-size: 12px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.gs-btn-primary {
  width: 100%;
  padding: 14px 24px;
  background: #0033FF;
  color: #ffffff;
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  position: relative;
}
.gs-btn-primary:hover {
  background: #0026cc;
  box-shadow: 0 6px 24px rgba(0, 51, 255, 0.35);
  transform: translateY(-1px);
}
.gs-btn-primary:active { transform: translateY(0); }
.gs-btn-primary.loading { pointer-events: none; }
.gs-btn-primary .gs-btn-text { transition: opacity 0.2s; }
.gs-btn-primary.loading .gs-btn-text { opacity: 0; }
.gs-btn-spinner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: gsSpin 0.7s linear infinite;
  opacity: 0;
  transition: opacity 0.2s;
}
.gs-btn-primary.loading .gs-btn-spinner { opacity: 1; }
@keyframes gsSpin { to { transform: rotate(360deg); } }

.gs-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.gs-btn-back {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 3, 62, 0.05);
  color: rgba(1, 3, 62, 0.50);
  border: 1.5px solid rgba(1, 3, 62, 0.10);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.gs-btn-back:hover {
  background: rgba(1, 3, 62, 0.09);
  color: #01033E;
  border-color: rgba(1, 3, 62, 0.18);
}

/* ================================================================
   APPLE-STYLE SUCCESS SCREEN
   ================================================================ */
#screen-complete {
  text-align: center;
  padding: 32px 0 16px;
}

/* Outer wrapper springs in */
.gs-apl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: gsAplWrapIn 0.7s cubic-bezier(0.34, 1.22, 0.64, 1) both;
}
@keyframes gsAplWrapIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Icon container */
.gs-apl-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse rings */
.gs-apl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 51, 255, 0.20);
  width: 80px;
  height: 80px;
}
.gs-apl-ring-1 { animation: gsRingPulse 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both; }
.gs-apl-ring-2 { animation: gsRingPulse 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both; }
@keyframes gsRingPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Main blue circle */
.gs-apl-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #0040FF 0%, #0028CC 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 0 rgba(0, 51, 255, 0.25),
    0 20px 60px rgba(0, 51, 255, 0.30),
    0 4px 16px rgba(0, 51, 255, 0.18);
  animation: gsCirclePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
  position: relative;
  z-index: 1;
}
@keyframes gsCirclePop {
  0%   { transform: scale(0);    opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

/* Checkmark stroke draw */
.gs-apl-tick {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: gsTickDraw 0.38s ease 0.55s forwards;
}
@keyframes gsTickDraw { to { stroke-dashoffset: 0; } }

/* Text elements */
.gs-success-title {
  font-family: 'Neue Power', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #01033E;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  animation: gsFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}
.gs-success-body {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  color: rgba(1, 3, 62, 0.50);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto 28px;
  animation: gsFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}
.gs-success-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 51, 255, 0.06);
  border: 0.6px solid rgba(0, 51, 255, 0.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0033FF;
  animation: gsFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}
.gs-back-home {
  display: inline-block;
  margin-top: 24px;
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  color: rgba(1, 3, 62, 0.35);
  text-decoration: none;
  transition: color 0.2s;
  animation: gsFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}
.gs-back-home:hover { color: #0033FF; }

@keyframes gsFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .gs-wizard-wrap {
    grid-template-columns: 1fr;
    padding: 20px 16px 60px;
    gap: 0;
    min-height: auto;
  }
  .gs-sidebar {
    display: none;
  }
  .gs-panel {
    padding: 0;
    background: transparent;
    min-height: auto;
  }
  .gs-content-wrap {
    border-radius: 16px;
    padding: 28px 24px 48px;
    min-height: auto;
  }
  .gs-section-hdr {
    max-width: 100%;
    padding: 0 0 20px;
  }
  .gs-form-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .gs-sec-title { font-size: 22px; }
  .gs-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gs-options {
    flex-direction: column;
  }
  .gs-option { min-width: 0; flex: none; width: 100%; }
  #chips-solutions .gs-option { min-width: 0; }
}

/* ================================================================
   PAGE PRELOADER  (Stripe-inspired)
   ================================================================ */

/* Lock scroll while loading */
body.is-loading {
  overflow: hidden;
}

/* ── Overlay ── */
#gs-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #01033E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;

  /* exit transition */
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

#gs-preloader.gs-preload-exit {
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
}

/* ── Top progress bar ── */
.gs-preload-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #818cf8, #38bdf8, #807DFE);
  background-size: 200% 100%;
  border-radius: 0 2px 2px 0;
  animation:
    gs-bar-width 1.35s cubic-bezier(0.45, 0, 0.1, 1) forwards,
    gs-bar-shimmer 1.8s linear infinite;
}

@keyframes gs-bar-width {
  0%   { width: 0%; }
  55%  { width: 72%; }
  85%  { width: 91%; }
  100% { width: 100%; }
}

@keyframes gs-bar-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Center content ── */
.gs-preload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: gs-inner-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

@keyframes gs-inner-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Logo ── */
.gs-preload-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-preload-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 72%);
  animation: gs-glow-pulse 2s ease-in-out infinite;
}

@keyframes gs-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* ── Sub-label ── */
.gs-preload-label {
  font-family: 'Neue Power', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ── Three animated dots ── */
.gs-preload-dots {
  position: absolute;
  bottom: 44px;
  display: flex;
  gap: 7px;
  opacity: 0;
  animation: gs-inner-in 0.4s ease 0.4s forwards;
}

.gs-preload-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: block;
  animation: gs-dot-bounce 1.1s ease-in-out infinite;
}

.gs-preload-dots span:nth-child(1) { animation-delay: 0s;    background: rgba(99, 102, 241, 0.7); }
.gs-preload-dots span:nth-child(2) { animation-delay: 0.18s; background: rgba(56, 189, 248, 0.7); }
.gs-preload-dots span:nth-child(3) { animation-delay: 0.36s; background: rgba(52, 211, 153, 0.7); }

@keyframes gs-dot-bounce {
  0%, 80%, 100% { transform: translateY(0);    opacity: 0.5; }
  40%           { transform: translateY(-8px); opacity: 1;   }
}

