/* =========================================================
   V1257 — Claims page premium flow refinement
   Scope: /zimia claims support page only
   ========================================================= */

.fc-claim-page .fc-claims-page-shell{
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 238, 235, .34), transparent 30%),
    linear-gradient(180deg, rgba(248, 252, 251, .94), rgba(255,255,255,1));
}

.fc-claim-page .fc-claims-hero{
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-bottom: clamp(22px, 4vw, 42px);
}

.fc-claim-page .fc-claims-hero__copy,
.fc-claim-page .fc-claims-hero__note,
.fc-claim-page .fc-claims-panel,
.fc-claim-page .fc-claims-document-card,
.fc-claim-page .fc-claims-form-card{
  border: 1px solid rgba(21, 94, 99, .12);
  box-shadow: 0 18px 44px rgba(10, 43, 52, .07);
  background: rgba(255,255,255,.88);
}

.fc-claim-page .fc-claims-hero__copy,
.fc-claim-page .fc-claims-hero__note{
  border-radius: 28px;
  padding: clamp(22px, 4vw, 38px);
}

.fc-claim-page .fc-claims-hero__copy .fc-h1{
  margin-bottom: 12px;
  max-width: 760px;
}

.fc-claim-page .fc-claims-hero__copy .fc-lead{
  max-width: 780px;
  margin-bottom: 0;
}

.fc-claim-page .fc-claims-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #155e63;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fc-claim-page .fc-claims-kicker::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: .42;
}

.fc-claim-page .fc-claims-hero__note{
  background: linear-gradient(180deg, rgba(235, 247, 245, .92), rgba(255,255,255,.92));
}

.fc-claim-page .fc-claims-hero__note strong{
  display: block;
  margin-bottom: 10px;
  color: #0f3d46;
  font-size: 1rem;
}

.fc-claim-page .fc-claims-hero__note p{
  margin: 0;
  color: #49626a;
  line-height: 1.72;
}

.fc-claim-page .fc-claims-layout{
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.fc-claim-page .fc-claims-aside{
  display: grid;
  gap: 16px;
  position: sticky;
  top: calc(var(--fc-header-offset, 92px) + 18px);
}

.fc-claim-page .fc-claims-panel{
  border-radius: 24px;
  padding: 22px;
}

.fc-claim-page .fc-claims-panel .fc-h2{
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  margin-bottom: 12px;
}

.fc-claim-page .fc-claims-checklist{
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-claim-page .fc-claims-checklist li{
  position: relative;
  padding-left: 24px;
  color: #425b63;
  line-height: 1.58;
}

.fc-claim-page .fc-claims-checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(21, 94, 99, .38);
}

.fc-claim-page .fc-claims-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.fc-claim-page .fc-claims-actions .btn{
  flex: 1 1 150px;
  justify-content: center;
}

.fc-claim-page .fc-claims-main{
  display: grid;
  gap: 18px;
  min-width: 0;
}

.fc-claim-page .fc-claims-document-card,
.fc-claim-page .fc-claims-form-card{
  border-radius: 28px;
  padding: clamp(22px, 3.2vw, 34px);
}

.fc-claim-page .fc-claims-document-card{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.fc-claim-page .fc-claims-document-card .note,
.fc-claim-page .fc-claims-form-head .fc-lead{
  margin-bottom: 0;
}

.fc-claim-page .fc-claims-form-head{
  margin-bottom: 22px;
}

.fc-claim-page .fc-filewrap{
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px dashed rgba(21, 94, 99, .25);
  border-radius: 18px;
  background: rgba(246, 251, 250, .78);
}

.fc-claim-page .fc-filewrap .note{
  display: block;
  margin: 0 0 8px;
}

.fc-claim-page .fc-filewrap .fc-muted{
  margin: 8px 0 0;
}

@media (max-width: 980px){
  .fc-claim-page .fc-claims-hero,
  .fc-claim-page .fc-claims-layout,
  .fc-claim-page .fc-claims-document-card{
    grid-template-columns: 1fr;
  }

  .fc-claim-page .fc-claims-aside{
    position: static;
    order: 2;
  }

  .fc-claim-page .fc-claims-main{
    order: 1;
  }

  .fc-claim-page .fc-claims-document-card .btn{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px){
  .fc-claim-page .fc-claims-hero__copy,
  .fc-claim-page .fc-claims-hero__note,
  .fc-claim-page .fc-claims-panel,
  .fc-claim-page .fc-claims-document-card,
  .fc-claim-page .fc-claims-form-card{
    border-radius: 20px;
    padding: 18px;
  }

  .fc-claim-page .fc-claims-actions{
    flex-direction: column;
  }

  .fc-claim-page .fc-claims-actions .btn,
  .fc-claim-page .fc-claims-form-card .btn.primary{
    width: 100%;
  }
}

/* =========================================================
   V1299 — Claims file upload visual harmonization
   Scope: /zimia attachments field only
   Purpose: make the native file input visually consistent with premium petrol-light forms
   ========================================================= */
.fc-claim-page .fc-claims-form-card .form-row > .fc-filewrap{
  grid-column: 1 / -1;
}

.fc-claim-page .fc-filewrap{
  box-sizing: border-box;
  padding: clamp(16px, 2vw, 20px);
  border: 1px dashed rgba(21, 94, 99, .26);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(247, 252, 251, .96), rgba(255, 255, 255, .92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 12px 28px rgba(10, 43, 52, .045);
}

.fc-claim-page .fc-filewrap > .note:first-child{
  color: #245862;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.fc-claim-page .fc-filewrap .fc-file{
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 94, 99, .18);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  color: #244e57;
  font: inherit;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(10, 43, 52, .04);
}

.fc-claim-page .fc-filewrap .fc-file::file-selector-button{
  border: 0;
  border-radius: 12px;
  margin: 0 12px 0 0;
  padding: 9px 14px;
  background: linear-gradient(180deg, rgba(229, 247, 246, 1), rgba(210, 238, 237, 1));
  color: #0f4f59;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(21, 94, 99, .12);
}

.fc-claim-page .fc-filewrap .fc-file::-webkit-file-upload-button{
  border: 0;
  border-radius: 12px;
  margin: 0 12px 0 0;
  padding: 9px 14px;
  background: linear-gradient(180deg, rgba(229, 247, 246, 1), rgba(210, 238, 237, 1));
  color: #0f4f59;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(21, 94, 99, .12);
}

.fc-claim-page .fc-filewrap .fc-file:hover::file-selector-button,
.fc-claim-page .fc-filewrap .fc-file:hover::-webkit-file-upload-button{
  background: linear-gradient(180deg, rgba(216, 244, 242, 1), rgba(194, 230, 229, 1));
}

.fc-claim-page .fc-filewrap .fc-file:focus-visible{
  outline: 3px solid rgba(21, 94, 99, .18);
  outline-offset: 3px;
  border-color: rgba(21, 94, 99, .42);
}

.fc-claim-page .fc-filewrap .fc-muted{
  margin-top: 12px;
  max-width: 760px;
  color: #58727a;
  line-height: 1.62;
}

@media (max-width: 560px){
  .fc-claim-page .fc-filewrap{
    padding: 14px;
    border-radius: 18px;
  }

  .fc-claim-page .fc-filewrap .fc-file{
    font-size: .94rem;
  }

  .fc-claim-page .fc-filewrap .fc-file::file-selector-button,
  .fc-claim-page .fc-filewrap .fc-file::-webkit-file-upload-button{
    margin-right: 8px;
    padding: 8px 11px;
  }
}


/* =========================================================
   V1300 — Claims custom file picker label
   Scope: /zimia attachments field only
   Purpose: replace browser-native "Περιήγηση" wording with controlled Greek copy
   ========================================================= */
.fc-claim-page .fc-filewrap{
  position: relative;
  cursor: pointer;
}

.fc-claim-page .fc-filewrap .fc-file-native{
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.fc-claim-page .fc-filewrap .fc-file-control{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(21, 94, 99, .18);
  border-radius: 17px;
  background: rgba(255,255,255,.96);
  color: #244e57;
  box-shadow: 0 8px 20px rgba(10, 43, 52, .04);
}

.fc-claim-page .fc-filewrap .fc-file-action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(229, 247, 246, 1), rgba(210, 238, 237, 1));
  color: #0f4f59;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(21, 94, 99, .12);
}

.fc-claim-page .fc-filewrap .fc-file-state{
  min-width: 0;
  color: #173f48;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-claim-page .fc-filewrap:focus-within .fc-file-control{
  outline: 3px solid rgba(21, 94, 99, .18);
  outline-offset: 3px;
  border-color: rgba(21, 94, 99, .42);
}

.fc-claim-page .fc-filewrap:hover .fc-file-action{
  background: linear-gradient(180deg, rgba(216, 244, 242, 1), rgba(194, 230, 229, 1));
}

@media (max-width: 560px){
  .fc-claim-page .fc-filewrap .fc-file-control{
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .fc-claim-page .fc-filewrap .fc-file-action{
    width: 100%;
  }

  .fc-claim-page .fc-filewrap .fc-file-state{
    white-space: normal;
  }
}


/* =========================================================
   V1315 — Claims Page Final Visual Parity Pass
   Scope: /zimia via body.fc-claim-page
   Visual-only parity pass after /epikoinonia and /prosfora refinements.
   No form logic, endpoint, upload, validation, CSRF, honeypot or email changes.
   ========================================================= */

.fc-claim-page .fc-claims-page-shell > .container{
  max-width:1180px;
}

.fc-claim-page .fc-claims-hero{
  gap:clamp(1.1rem,2.4vw,2rem);
  margin-bottom:clamp(1.45rem,3vw,2.4rem);
}

.fc-claim-page .fc-claims-hero__copy{
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,252,251,.94)),
    radial-gradient(circle at 100% 0%,rgba(47,107,129,.055),transparent 18rem);
}

.fc-claim-page .fc-claims-hero__copy .fc-h1{
  max-width:min(980px,100%);
  letter-spacing:-.03em;
}

.fc-claim-page .fc-claims-hero__copy .fc-lead{
  max-width:min(980px,100%);
  line-height:1.74;
  color:rgba(18,57,70,.82);
}

.fc-claim-page .fc-claims-hero__note{
  border-color:rgba(47,107,129,.14);
  background:
    linear-gradient(180deg,rgba(239,248,247,.96),rgba(255,255,255,.94)),
    radial-gradient(circle at 100% 0%,rgba(47,107,129,.06),transparent 14rem);
}

.fc-claim-page .fc-claims-layout{
  grid-template-columns:minmax(270px,.42fr) minmax(0,1fr);
  gap:clamp(1.1rem,2.4vw,2rem);
}

.fc-claim-page .fc-claims-panel,
.fc-claim-page .fc-claims-document-card,
.fc-claim-page .fc-claims-form-card{
  border-color:rgba(47,107,129,.14);
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,252,251,.94)),
    radial-gradient(circle at 100% 0%,rgba(47,107,129,.045),transparent 16rem);
  box-shadow:0 18px 44px rgba(12,52,65,.065);
}

.fc-claim-page .fc-claims-panel{
  padding:clamp(1.1rem,2vw,1.45rem);
}

.fc-claim-page .fc-claims-document-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:clamp(1rem,2vw,1.45rem);
  align-items:center;
  padding:clamp(1.15rem,2.2vw,1.6rem);
  border-radius:24px;
}

.fc-claim-page .fc-claims-document-card .fc-h2{
  margin-bottom:.55rem;
  color:#123946;
  letter-spacing:-.018em;
}

.fc-claim-page .fc-claims-document-card .fc-lead{
  max-width:760px;
  line-height:1.66;
  color:rgba(18,57,70,.76);
}

.fc-claim-page .fc-claims-form-card{
  padding:clamp(1.35rem,2.5vw,2rem);
  border-radius:26px;
}

.fc-claim-page .fc-claims-form-head{
  margin-bottom:clamp(1rem,2vw,1.35rem);
  padding-bottom:clamp(.9rem,1.6vw,1.15rem);
  border-bottom:1px solid rgba(47,107,129,.12);
}

.fc-claim-page .fc-claims-form-head .fc-h2{
  margin-bottom:.5rem;
  letter-spacing:-.02em;
}

.fc-claim-page .fc-claims-form-head .fc-lead{
  max-width:860px;
  line-height:1.68;
  color:rgba(18,57,70,.76);
}

.fc-claim-page .fc-claims-form-card .fc-required-note{
  margin:0 0 clamp(1rem,1.8vw,1.35rem);
  padding:.88rem 1rem;
  border:1px solid rgba(47,107,129,.14);
  border-radius:16px;
  background:linear-gradient(180deg,rgba(243,251,249,.96),rgba(250,253,252,.92));
  color:rgba(18,57,70,.72);
}

.fc-claim-page .fc-claims-form-card .form-row{
  gap:clamp(.85rem,1.6vw,1.15rem);
}

.fc-claim-page .fc-claims-form-card label.small{
  color:#123946;
  font-weight:750;
  letter-spacing:-.01em;
}

.fc-claim-page .fc-claims-form-card .input,
.fc-claim-page .fc-claims-form-card .select,
.fc-claim-page .fc-claims-form-card .textarea{
  border-color:rgba(47,107,129,.18);
  background:rgba(255,255,255,.92);
}

.fc-claim-page .fc-claims-form-card .input:focus,
.fc-claim-page .fc-claims-form-card .select:focus,
.fc-claim-page .fc-claims-form-card .textarea:focus{
  border-color:rgba(15,91,104,.45);
  box-shadow:0 0 0 4px rgba(47,107,129,.11);
}

.fc-claim-page .fc-claims-form-card .fc-filewrap{
  width:100%;
  padding:1rem 1.05rem;
  border:1px solid rgba(47,107,129,.16);
  border-radius:18px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.97),rgba(247,252,251,.94)),
    radial-gradient(circle at 100% 0%,rgba(47,107,129,.055),transparent 14rem);
}

.fc-claim-page .fc-claims-form-card .fc-filewrap .fc-file{
  width:100%;
  margin:.5rem 0 .45rem;
  padding:.68rem;
  border:1px solid rgba(47,107,129,.12);
  border-radius:14px;
  background:rgba(255,255,255,.78);
}

.fc-claim-page .fc-claims-form-card .fc-filewrap .fc-file::file-selector-button{
  margin-right:.8rem;
  border:1px solid rgba(47,107,129,.22);
  border-radius:12px;
  background:linear-gradient(180deg,#eff8f7,#dff1ef);
  color:#0f5b68;
  font-weight:700;
  padding:.72rem 1rem;
  cursor:pointer;
}

.fc-claim-page .fc-claims-form-card .fc-consent{
  margin-top:clamp(1rem,1.8vw,1.25rem);
  padding:.9rem 1rem;
  border:1px solid rgba(47,107,129,.14);
  border-radius:16px;
  background:rgba(255,255,255,.72);
  line-height:1.62;
}

.fc-claim-page .fc-claims-form-card [data-msg]{
  margin-top:.8rem;
}

.fc-claim-page .fc-claims-form-card button[type="submit"].btn{
  margin-top:clamp(.9rem,1.6vw,1.15rem);
  min-width:min(100%,280px);
  justify-content:center;
}

@media (max-width:1020px){
  .fc-claim-page .fc-claims-hero,
  .fc-claim-page .fc-claims-layout{
    grid-template-columns:1fr;
  }

  .fc-claim-page .fc-claims-aside{
    position:relative;
    top:auto;
  }

  .fc-claim-page .fc-claims-document-card{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){
  .fc-claim-page .fc-claims-hero__copy,
  .fc-claim-page .fc-claims-hero__note,
  .fc-claim-page .fc-claims-form-card,
  .fc-claim-page .fc-claims-document-card,
  .fc-claim-page .fc-claims-panel{
    border-radius:20px;
  }

  .fc-claim-page .fc-claims-form-card button[type="submit"].btn{
    width:100%;
  }
}


/* =========================================================
   V1326 — Claims Submit Area & Success Copy Final Consistency Pass
   Scope: /zimia via body.fc-claim-page
   Final action/success copy refinement only. No endpoint, validation,
   upload, CSRF, honeypot, email or analytics changes.
   ========================================================= */

.fc-claim-page .fc-claims-final-panel{
  margin-top:clamp(1rem,1.8vw,1.35rem);
  padding:clamp(1rem,1.8vw,1.25rem);
  border:1px solid rgba(47,107,129,.14);
  border-radius:18px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.97),rgba(247,252,251,.94)),
    radial-gradient(circle at 100% 0%,rgba(47,107,129,.05),transparent 14rem);
  box-shadow:0 12px 30px rgba(12,52,65,.045);
}

.fc-claim-page .fc-claims-final-panel__copy{
  display:grid;
  gap:.28rem;
  max-width:880px;
  color:rgba(18,57,70,.72);
  font-size:.96rem;
  line-height:1.62;
}

.fc-claim-page .fc-claims-final-panel__copy strong{
  color:#123946;
  font-size:1rem;
}

.fc-claim-page .fc-claims-final-panel [data-msg]{
  margin-top:.8rem;
}

.fc-claim-page .fc-claims-final-panel .btn.primary{
  width:min(100%, 340px);
  min-height:46px;
  margin-top:clamp(.9rem,1.6vw,1.1rem);
  justify-content:center;
}

.fc-claim-page .fc-claims-final-panel:focus-within{
  border-color:rgba(15,91,104,.30);
  box-shadow:
    0 0 0 4px rgba(47,107,129,.09),
    0 12px 30px rgba(12,52,65,.055);
}

@media (max-width:700px){
  .fc-claim-page .fc-claims-final-panel{
    padding:.95rem;
    border-radius:18px;
  }

  .fc-claim-page .fc-claims-final-panel__copy{
    font-size:.93rem;
  }

  .fc-claim-page .fc-claims-final-panel .btn.primary{
    width:100%;
  }
}


/* =========================================================
   V1327 — Claims Field Labels & Helper Text Precision Pass
   Scope: /zimia via body.fc-claim-page
   Copy/accessibility precision and light helper-text polishing only.
   ========================================================= */

.fc-claim-page .fc-claims-form-card .fc-required-note{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  font-size:.95rem;
  line-height:1.62;
}

.fc-claim-page .fc-claims-form-card .fc-required-note::before{
  content:"";
  width:.52rem;
  height:.52rem;
  margin-top:.55rem;
  border-radius:999px;
  flex:0 0 auto;
  background:rgba(15,91,104,.58);
  box-shadow:0 0 0 5px rgba(47,107,129,.09);
}

.fc-claim-page .fc-claims-form-card .fc-field-help,
.fc-claim-page .fc-claims-form-card .fc-muted{
  color:rgba(18,57,70,.68);
  font-size:.95rem;
  line-height:1.58;
}

.fc-claim-page .fc-claims-form-card label.small,
.fc-claim-page .fc-filewrap > .note{
  color:#123946;
  font-weight:750;
  letter-spacing:-.01em;
}

.fc-claim-page .fc-filewrap > .note{
  display:block;
  margin-bottom:.15rem;
}

.fc-claim-page .fc-claims-form-card .textarea{
  min-height:160px;
}

@media (max-width:700px){
  .fc-claim-page .fc-claims-form-card .fc-required-note,
  .fc-claim-page .fc-claims-form-card .fc-field-help,
  .fc-claim-page .fc-claims-form-card .fc-muted{
    font-size:.92rem;
  }
}


/* =========================================================
   V1328 — Claims Mobile & Upload Visual Final Polish
   Scope: /zimia via body.fc-claim-page
   Mobile/upload/consent/final-submit visual polish only.
   No PHP, endpoint, validation, upload backend, CSRF, honeypot,
   email or analytics changes.
   ========================================================= */

.fc-claim-page .fc-filewrap{
  display:grid;
  gap:.62rem;
}

.fc-claim-page .fc-file-control{
  min-height:58px;
}

.fc-claim-page .fc-file-action{
  min-width:142px;
  font-size:.95rem;
  line-height:1.2;
}

.fc-claim-page .fc-file-state{
  font-size:.94rem;
}

.fc-claim-page .fc-filewrap:focus-within .fc-file-control{
  border-color:rgba(15,91,104,.34);
  box-shadow:0 0 0 4px rgba(47,107,129,.10);
}

.fc-claim-page .fc-filewrap:focus-within .fc-file-action{
  outline:3px solid rgba(15,91,104,.20);
  outline-offset:2px;
}

.fc-claim-page .fc-claims-form-card .fc-consent{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:.62rem;
  align-items:flex-start;
}

.fc-claim-page .fc-claims-form-card .fc-consent input{
  margin-top:.2rem;
}

.fc-claim-page .fc-claims-form-card .fc-consent a{
  color:#0f5b68;
  font-weight:750;
  text-underline-offset:.18em;
  text-decoration-thickness:.08em;
}

.fc-claim-page .fc-claims-form-card .fc-consent a:hover,
.fc-claim-page .fc-claims-form-card .fc-consent a:focus-visible{
  color:#0a3f49;
  text-decoration:underline;
}

.fc-claim-page .fc-claims-final-panel .btn.primary{
  box-shadow:0 14px 30px rgba(12,52,65,.11);
}

@media (max-width:860px){
  .fc-claim-page .fc-claims-page-shell{
    padding-top:1.25rem;
  }

  .fc-claim-page .fc-claims-hero{
    gap:1rem;
  }

  .fc-claim-page .fc-claims-hero__copy,
  .fc-claim-page .fc-claims-hero__note,
  .fc-claim-page .fc-claims-panel,
  .fc-claim-page .fc-claims-document-card,
  .fc-claim-page .fc-claims-form-card{
    border-radius:20px;
  }

  .fc-claim-page .fc-claims-hero__copy,
  .fc-claim-page .fc-claims-hero__note{
    padding:1.1rem;
  }

  .fc-claim-page .fc-claims-hero__copy .fc-h1{
    font-size:clamp(2rem,9vw,2.45rem);
    line-height:1.05;
    letter-spacing:-.04em;
  }

  .fc-claim-page .fc-claims-hero__copy .fc-lead,
  .fc-claim-page .fc-claims-hero__note p{
    font-size:.96rem;
    line-height:1.64;
  }

  .fc-claim-page .fc-claims-layout{
    gap:1rem;
  }

  .fc-claim-page .fc-claims-aside{
    gap:.85rem;
  }

  .fc-claim-page .fc-claims-panel{
    padding:1rem;
  }

  .fc-claim-page .fc-claims-checklist{
    gap:.68rem;
  }

  .fc-claim-page .fc-claims-checklist li{
    line-height:1.55;
  }

  .fc-claim-page .fc-claims-form-card{
    padding:1rem;
  }

  .fc-claim-page .fc-claims-form-head{
    margin-bottom:1rem;
    padding-bottom:.95rem;
  }

  .fc-claim-page .fc-claims-form-head .fc-lead{
    font-size:.95rem;
    line-height:1.62;
  }

  .fc-claim-page .fc-claims-form-card .form-row{
    grid-template-columns:1fr;
    gap:.95rem;
  }

  .fc-claim-page .fc-claims-form-card .input,
  .fc-claim-page .fc-claims-form-card .select,
  .fc-claim-page .fc-claims-form-card .textarea{
    min-height:48px;
    font-size:16px;
  }

  .fc-claim-page .fc-claims-form-card .textarea{
    min-height:150px;
  }

  .fc-claim-page .fc-filewrap{
    padding:.95rem;
    border-radius:18px;
  }

  .fc-claim-page .fc-file-control{
    grid-template-columns:1fr;
    min-height:0;
    gap:.65rem;
  }

  .fc-claim-page .fc-file-action{
    width:100%;
    min-height:44px;
  }

  .fc-claim-page .fc-file-state{
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }

  .fc-claim-page .fc-claims-form-card .fc-consent{
    padding:.85rem .9rem;
    line-height:1.58;
  }

  .fc-claim-page .fc-claims-final-panel{
    padding:.95rem;
  }

  .fc-claim-page .fc-claims-final-panel .btn.primary{
    width:100%;
    min-height:46px;
  }

  .fc-claim-page .fc-claims-document-card{
    padding:1rem;
  }

  .fc-claim-page .fc-claims-document-card .btn{
    width:100%;
    justify-content:center;
  }
}

@media (max-width:420px){
  .fc-claim-page .fc-claims-kicker{
    font-size:.72rem;
    letter-spacing:.065em;
  }

  .fc-claim-page .fc-claims-form-card .fc-required-note{
    font-size:.9rem;
  }

  .fc-claim-page .fc-file-action,
  .fc-claim-page .fc-file-state{
    font-size:.92rem;
  }
}
