.ttclaims {
  --tt-brand: #163f3f;
  --tt-brand-dark: #0d3030;
  --tt-accent: #41bdb2;
  --tt-accent-dark: #2d9d94;
  --tt-soft: #eaf7f5;
  --tt-ink: #1d2929;
  --tt-muted: #657474;
  --tt-line: #d8e3e1;
  color: var(--tt-ink);
  margin: 2rem auto;
  max-width: 940px;
  width: 100%;
}

.ttclaims *, .ttclaims *::before, .ttclaims *::after { box-sizing: border-box; }
.ttclaims [hidden] { display: none !important; }

.ttclaims__card,
.ttclaims__success {
  background: #fff;
  border: 1px solid var(--tt-line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(22, 63, 63, .07);
  padding: 30px;
}

.ttclaims__head {
  border-bottom: 1px solid var(--tt-line);
  margin-bottom: 23px;
  padding-bottom: 19px;
}

.ttclaims__head h2,
.ttclaims__success h2 {
  color: var(--tt-brand);
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 6px;
}

.ttclaims__head p,
.ttclaims__sales-contact p,
.ttclaims__filebox p,
.ttclaims__success p {
  color: var(--tt-muted);
  margin: 0;
}

.ttclaims__sales-contact {
  background: linear-gradient(135deg, #f4faf9, #fff);
  border: 1px solid #cfe3df;
  border-left: 5px solid var(--tt-accent);
  border-radius: 11px;
  margin: 0 0 22px;
  padding: 17px 19px;
}

.ttclaims__sales-contact strong { color: var(--tt-brand); display: block; margin-bottom: 5px; }
.ttclaims__sales-contact p { font-size: 13px; }

.ttclaims__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.ttclaims__full { grid-column: 1 / -1; }
.ttclaims__field label,
.ttclaims__fieldset legend {
  color: #29403f;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}

.ttclaims__field label > span[aria-hidden="true"],
.ttclaims__fieldset legend span,
.ttclaims__consent span[aria-hidden="true"] { color: #a33; }

.ttclaims__field input[type="text"],
.ttclaims__field input[type="email"],
.ttclaims__field input[type="tel"],
.ttclaims__field select,
.ttclaims__field textarea {
  background: #fff;
  border: 1px solid #c9d7d4;
  border-radius: 9px;
  color: var(--tt-ink);
  font: inherit;
  outline: none;
  padding: 12px 13px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

.ttclaims__field input:focus,
.ttclaims__field select:focus,
.ttclaims__field textarea:focus {
  border-color: var(--tt-accent);
  box-shadow: 0 0 0 3px rgba(65, 189, 178, .14);
}

.ttclaims__field textarea { min-height: 125px; resize: vertical; }
.ttclaims__fieldset { border: 0; margin: 0; min-width: 0; padding: 0; }
.ttclaims__types { display: flex; flex-wrap: wrap; gap: 12px 18px; padding: 4px 0 2px; }
.ttclaims__types label { align-items: center; display: flex; font-size: 14px; font-weight: 600; gap: 8px; margin: 0; }
.ttclaims input[type="radio"], .ttclaims input[type="checkbox"] { accent-color: var(--tt-accent-dark); }

.ttclaims__filebox {
  background: #f8fbfa;
  border: 1px dashed #a9c5c0;
  border-radius: 10px;
  padding: 16px;
}

.ttclaims__filebox p { font-size: 12px; margin-top: 7px; }
.ttclaims__consent label { align-items: flex-start; display: flex; font-weight: 400; gap: 10px; line-height: 1.45; margin: 0; }
.ttclaims__consent input { flex: 0 0 auto; margin-top: 3px; }
.ttclaims__consent a { color: var(--tt-brand); text-decoration: underline; }

.ttclaims__actions { display: flex; justify-content: flex-end; margin-top: 24px; }
.ttclaims__submit {
  background: var(--tt-brand);
  border: 0;
  border-radius: 9px;
  box-shadow: 0 4px 11px rgba(22, 63, 63, .12);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 21px;
  transition: background .15s, transform .15s;
}

.ttclaims__submit:hover { background: var(--tt-brand-dark); transform: translateY(-1px); }
.ttclaims__submit--support { background: var(--tt-accent-dark); }
.ttclaims__submit--support:hover { background: var(--tt-brand); }
.ttclaims__submit:disabled { cursor: wait; opacity: .7; transform: none; }
.ttclaims__message { border: 1px solid #d6a9a9; border-radius: 9px; color: #842626; margin-top: 18px; padding: 12px 14px; }
.ttclaims__message--success { background: #eef8f6; border-color: #cbe6e1; color: #1c6848; }
.ttclaims__success { text-align: center; }
.ttclaims__check { align-items: center; background: var(--tt-accent); border-radius: 50%; color: #103d39; display: flex; font-size: 30px; font-weight: 800; height: 62px; justify-content: center; margin: 0 auto 16px; width: 62px; }

.ttclaims__honeypot {
  height: 1px !important;
  left: -10000px !important;
  overflow: hidden !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}

@media (max-width: 700px) {
  .ttclaims { margin: 1.25rem auto; }
  .ttclaims__card, .ttclaims__success { padding: 22px; }
  .ttclaims__grid { grid-template-columns: 1fr; }
  .ttclaims__full { grid-column: auto; }
  .ttclaims__submit { width: 100%; }
}
