/*get-started.css*/
/* Page-specific overrides */
  .gs-page {
    min-height: calc(100vh - 64px);
    background: var(--surface);
    padding: 60px 2rem 80px;
  }

  .gs-container {
    max-width: 780px;
    margin: 0 auto;
  }

  /* Page header */
  .gs-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .gs-header .section-label { margin-bottom: 12px; }
  .gs-header .section-divider { margin: 0 auto 24px; }
  .gs-header .section-title { margin-bottom: 12px; }
  .gs-header .section-sub { margin: 0 auto; text-align: center; }

  /* Step indicator */
  .gs-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
  }
  .gs-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
  }
  .gs-step.active { color: var(--blue); }
  .gs-step.done { color: var(--teal); }
  .gs-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 500;
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .gs-step.active .gs-step-num {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }
  .gs-step.done .gs-step-num {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
  }
  .gs-step-connector {
    width: 48px; height: 1.5px;
    background: var(--border);
    margin: 0 4px;
    flex-shrink: 0;
  }
  .gs-step-connector.done { background: var(--teal); }

  /* Form card */
  .gs-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .gs-panel {
    display: none;
    padding: 40px 40px 36px;
    animation: fadeIn 0.22s ease;
  }
  .gs-panel.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Panel header */
  .gs-panel-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  .gs-panel-sub {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 32px;
  }

  /* Form fields */
  .gs-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .gs-field-row.full { grid-template-columns: 1fr; }
  .gs-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .gs-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
  }
  .gs-label .req {
    color: var(--blue);
    margin-left: 2px;
  }
  .gs-input, .gs-select {
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: white;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }
  .gs-input::placeholder { color: var(--text-light); }
  .gs-input:hover, .gs-select:hover { border-color: #b0bcda; }
  .gs-input:focus, .gs-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,92,219,0.1);
  }
  .gs-input.error { border-color: #e24b4a; }
  .gs-input.error:focus { box-shadow: 0 0 0 3px rgba(226,75,74,0.1); }
  .gs-field-hint {
    font-size: 12px;
    color: var(--text-light);
  }
  .gs-field-error {
    font-size: 12px;
    color: #c0392b;
    display: none;
  }
  .gs-field-error.visible { display: block; }

  /* Select wrapper for custom arrow */
  .gs-select-wrap {
    position: relative;
  }
  .gs-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
  }
  .gs-select { padding-right: 32px; cursor: pointer; }

  /* Counter input */
  .gs-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    height: 42px;
    transition: border-color 0.15s;
  }
  .gs-counter:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,92,219,0.1);
  }
  .gs-counter-btn {
    width: 40px; height: 100%;
    background: var(--surface);
    border: none;
    border-right: 1px solid var(--border);
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
  }
  .gs-counter-btn:last-child {
    border-right: none;
    border-left: 1px solid var(--border);
  }
  .gs-counter-btn:hover { background: var(--blue-light); color: var(--blue); }
  .gs-counter-input {
    flex: 1;
    border: none;
    outline: none;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    background: white;
    width: 0;
    min-width: 0;
  }

  /* Divider inside card */
  .gs-divider {
    height: 1px;
    background: var(--border);
    margin: 0 -40px 28px;
  }

  /* Summary boxes on panel 2 */
  .gs-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 13px;
  }
  .gs-summary-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
  }
  .gs-summary-row {
    display: flex; justify-content: space-between;
    color: var(--text-muted);
    padding: 3px 0;
    gap: 16px;
  }
  .gs-summary-val {
    font-weight: 500;
    color: var(--navy);
    text-align: right;
  }

  /* Tier picker */
  .gs-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
  }
  .gs-tier {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 18px 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    text-align: center;
    user-select: none;
    position: relative;
  }
  .gs-tier:hover { border-color: #b0bcda; background: #fafbfe; }
  .gs-tier.selected {
    border-color: var(--blue);
    background: var(--blue-light);
  }
  .gs-tier-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .gs-tier-range {
    font-size: 12px;
    color: var(--text-muted);
  }
  .gs-tier-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  input[type=radio]:checked + .gs-tier-name { color: var(--blue); }

  /* Card footer */
  .gs-card-footer {
    padding: 20px 40px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .gs-back {
    font-size: 14px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    padding: 0;
    display: flex; align-items: center; gap: 6px;
    transition: color 0.15s;
  }
  .gs-back:hover { color: var(--navy); }
  .gs-back svg { width: 14px; height: 14px; }
  .gs-next {
    background: var(--blue);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 11px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: background 0.2s;
  }
  .gs-next:hover { background: #1448b0; }
  .gs-next svg { width: 14px; height: 14px; }
  .gs-next:disabled { background: #9ab0e8; cursor: not-allowed; }
  .gs-progress-hint {
    font-size: 12px;
    color: var(--text-light);
  }

  /* Success panel */
  .gs-success {
    text-align: center;
    padding: 60px 40px;
  }
  .gs-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
  }
  .gs-success-icon svg { width: 28px; height: 28px; }
  .gs-success h2 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .gs-success p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 420px;
    margin: 0 auto 32px;
    line-height: 1.65;
  }
  .gs-success-meta {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    max-width: 380px;
    margin: 0 auto 32px;
    text-align: left;
    font-size: 13px;
  }
  .gs-success-meta-row {
    display: flex; justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    gap: 16px;
  }
  .gs-success-meta-row:last-child { border-bottom: none; }
  .gs-success-meta-val {
    font-weight: 500;
    color: var(--navy);
    text-align: right;
  }

  /* Trust strip below card */
  .gs-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .gs-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-light);
  }
  .gs-trust-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

  /* Cloudflare Turnstile placeholder */
  .gs-turnstile {
    margin: 20px 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    font-size: 13px;
    color: var(--text-muted);
  }
  .gs-turnstile-check {
    width: 22px; height: 22px;
    border-radius: 4px;
    border: 1.5px solid var(--border);
    background: white;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .gs-turnstile-check.verified {
    background: var(--teal);
    border-color: var(--teal);
  }
  .gs-turnstile-check.verified svg { display: block; }
  .gs-turnstile-check svg { display: none; width: 12px; height: 12px; }
  .gs-turnstile-logo {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-light);
    display: flex; align-items: center; gap: 4px;
  }

  @media (max-width: 640px) {
    .gs-panel { padding: 28px 20px 24px; }
    .gs-card-footer { padding: 16px 20px; }
    .gs-field-row { grid-template-columns: 1fr; }
    .gs-tier-grid { grid-template-columns: 1fr; }
    .gs-divider { margin: 0 -20px 24px; }
    .gs-steps { gap: 0; }
    .gs-step-label { display: none; }
  }