body.claim-page {
  background: var(--card-alt);
}
.claim-hero {
  padding: 8.5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%);
  color: #fff;
}
.claim-hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.claim-hero .eyebrow::before {
  background: #fff;
}
.claim-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.claim-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}
.claim-wrap {
  max-width: 880px;
  margin: -1.5rem auto 0;
  padding: 0 1.5rem 5rem;
}
.claim-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}
.claim-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}
.claim-intro {
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.claim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.claim-grid .full {
  grid-column: 1/-1;
}
.claim-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.42rem;
}
.claim-field input,
.claim-field select,
.claim-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  outline: none;
}
.claim-field textarea {
  min-height: 110px;
  resize: vertical;
}
.claim-field input:focus,
.claim-field select:focus,
.claim-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.claim-divider {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 1.8rem 0;
}
.claim-note {
  display: flex;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--blue-tint);
  border-radius: 12px;
  color: var(--slate);
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}
.claim-note strong {
  color: var(--ink);
}
.claim-error {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--rose-tint);
  color: var(--rose);
  border-radius: 10px;
}
.claim-success {
  padding: 2rem;
  text-align: center;
}
.claim-code {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.claim-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.claim-topbar {
  padding: 1rem 0;
  background: var(--navy);
  color: #fff;
}
.claim-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.claim-lookup {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: var(--teal-tint);
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.claim-lookup.show {
  display: block;
}
.claim-lookup strong {
  color: var(--teal);
}
@media (max-width: 680px) {
  .claim-grid {
    grid-template-columns: 1fr;
  }
  .claim-hero {
    padding-top: 6.5rem;
  }
  .claim-actions {
    flex-direction: column;
  }
  .claim-actions .btn {
    width: 100%;
  }
}

/* ============================================================
   CLAIM FORM INPUT VISIBILITY FIX
   ============================================================ */

/* Main form fields */
.claim-field input,
.claim-field select,
.claim-field textarea {
    background: #ffffff !important;
    color: #172033 !important;
    caret-color: #172033;
    font-weight: 500;
}

/* Dropdown options */
.claim-field select option {
    background: #ffffff;
    color: #172033;
}

/* Placeholder text */
.claim-field input::placeholder,
.claim-field textarea::placeholder {
    color: #7a8599 !important;
    opacity: 1;
}

/* File upload field */
.claim-field input[type="file"] {
    color: #172033 !important;
    background: #ffffff !important;
}

/* File upload button */
.claim-field input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 7px 12px;
    border: 0;
    border-radius: 6px;
    background: #dce6f8;
    color: #172033;
    font-weight: 600;
    cursor: pointer;
}

/* Number input text */
.claim-field input[type="number"] {
    color: #172033 !important;
}

/* Focus state */
.claim-field input:focus,
.claim-field select:focus,
.claim-field textarea:focus {
    color: #172033 !important;
    background: #ffffff !important;
}