.cs-get-help-page {
  background:
    radial-gradient(circle at top right, rgba(196, 30, 58, 0.08), transparent 28rem),
    linear-gradient(180deg, #f7f2ef 0%, #fafbfc 24%, #fafbfc 100%);
  color: var(--slate);
  min-height: 100vh;
}

.cs-get-help-hero,
.cs-get-help-section {
  padding: 1.5rem 1.25rem;
}

.cs-get-help-hero-inner,
.cs-get-help-section-inner {
  margin: 0 auto;
  max-width: 76rem;
}

.cs-get-help-hero-copy {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(196, 30, 58, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}

.cs-get-help-kicker {
  color: var(--maple);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.cs-get-help-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 0.85rem;
}

.cs-get-help-hero h1 em {
  color: var(--maple);
  font-style: italic;
}

.cs-get-help-hero p {
  color: var(--slate-light);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 42rem;
}

.cs-get-help-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
}

.cs-get-help-point {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
}

.cs-get-help-point strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cs-get-help-point span:first-child {
  color: var(--maple);
  font-size: 1.25rem;
  line-height: 1;
}

.cs-get-help-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 55, 72, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cs-get-help-card-head {
  align-items: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(45, 55, 72, 0.04));
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.cs-get-help-card-head h2,
.cs-get-help-card-head p {
  margin: 0;
}

.cs-get-help-card-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
}

.cs-get-help-card-head p {
  color: var(--mist);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.cs-get-help-form-message {
  min-height: 0;
}

.cs-get-help-form-error {
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 0.9rem;
  color: var(--maple-dark);
  margin: 1rem 1.25rem 0;
  padding: 0.9rem 1rem;
}

.cs-get-help-body {
  padding: 1.25rem;
}

.cs-get-help-body fieldset {
  border: 0;
  margin: 0 0 1.2rem;
  padding: 0;
}

.cs-get-help-body legend {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cs-get-help-step-note {
  color: var(--slate-light);
  margin: 0 0 1rem;
}

.cs-get-help-goals,
.cs-get-help-options,
.cs-get-help-link-list {
  display: grid;
  gap: 0.8rem;
}

.cs-get-help-option,
.cs-get-help-link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: block;
  padding: 1rem;
  position: relative;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cs-get-help-option:hover,
.cs-get-help-link-card:hover {
  border-color: rgba(196, 30, 58, 0.45);
  transform: translateY(-1px);
}

.cs-get-help-option:focus-within,
.cs-get-help-link-card:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.28);
  outline: 0;
  transform: translateY(-1px);
}

.cs-get-help-option.is-selected,
.cs-get-help-option.is-selected:focus-within {
  border-color: var(--maple);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.28);
}

.cs-get-help-option input {
  inset: 0;
  opacity: 0;
  position: absolute;
}

.cs-get-help-option-kicker {
  color: var(--maple);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.cs-get-help-option-label {
  color: var(--slate);
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.cs-get-help-option-desc {
  color: var(--mist);
  display: block;
  margin-top: 0.35rem;
}

.cs-get-help-grid {
  display: grid;
  gap: 1rem;
}

.cs-get-help-text-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.cs-get-help-text-field span {
  font-weight: 700;
}

.cs-get-help-text-field input,
.cs-get-help-text-field select {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  color: var(--slate);
  font-size: 1rem;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
}

.cs-get-help-text-field input:focus,
.cs-get-help-text-field select:focus,
.cs-get-help-primary:focus,
.cs-get-help-secondary:focus,
.cs-get-help-checkbox:focus-within {
  border-color: var(--maple);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
  outline: 0;
}

.cs-get-help-checkbox {
  align-items: flex-start;
  background: rgba(240, 243, 247, 0.5);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.cs-get-help-checkbox strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.cs-get-help-checkbox small {
  color: var(--mist);
  display: block;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cs-get-help-checkbox input {
  margin-top: 0.2rem;
}

.cs-get-help-field-error {
  color: var(--maple-dark);
  font-size: 0.92rem;
  margin: -0.4rem 0 1rem;
}

.cs-get-help-actions {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 1rem 1.25rem 1.25rem;
}

.cs-get-help-primary,
.cs-get-help-secondary {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  min-height: 3.2rem;
  min-width: 9.5rem;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
}

.cs-get-help-primary {
  background: linear-gradient(135deg, var(--maple), var(--maple-dark));
  color: var(--white);
}

.cs-get-help-secondary {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--slate);
}

.cs-get-help-primary[disabled],
.cs-get-help-secondary[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.cs-get-help-honeypot {
  left: -9999px;
  position: absolute;
}

.cs-get-help-thankyou {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 232, 235, 0.7));
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 1.2rem;
  padding: 1.2rem;
}

.cs-get-help-thankyou h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.cs-get-help-thankyou p {
  margin: 0 0 0.75rem;
}

.cs-get-help-thankyou-support {
  color: var(--mist);
}

.cs-get-help-link-card {
  color: var(--slate);
  font-weight: 700;
}

.cs-get-help-fallback {
  background: rgba(255, 255, 255, 0.88);
  border: 1px dashed rgba(45, 55, 72, 0.18);
  border-radius: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.cs-get-help-fallback p {
  margin: 0;
}

.cs-get-help-fallback a {
  color: var(--maple-dark);
  font-weight: 700;
}

@media (min-width: 48rem) {
  .cs-get-help-hero,
  .cs-get-help-section {
    padding: 2rem;
  }

  .cs-get-help-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cs-get-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-get-help-goals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-get-help-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-get-help-link-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
