/* Conversion and trust refinements for the main Greek and English landing pages. */
.heroReassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.heroReassurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.heroReassurance span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7dc87, #6fe6f2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .06);
}

.conversionProof {
  padding: 0 0 18px;
}

.conversionProofGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, .14), transparent 42%),
    #101820;
  box-shadow: 0 20px 46px rgba(2, 12, 27, .16);
}

.conversionProofItem {
  position: relative;
  min-width: 0;
  padding: 20px 20px 18px;
}

.conversionProofItem + .conversionProofItem {
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.conversionProofItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #f5d67c, #69dce9);
}

.conversionProofItem strong,
.conversionProofItem small {
  display: block;
}

.conversionProofItem strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.conversionProofItem small {
  color: rgba(226, 232, 240, .68);
  font-size: 12px;
  line-height: 1.6;
}

.quoteForm {
  gap: 16px;
}

.formGrid {
  display: grid;
  gap: 14px;
}

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

.formGridThree {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.formField {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.formField > span {
  color: #243244;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.formField .requiredMark {
  color: #087c99;
}

.formField .fieldOptional {
  color: #7b8493;
  font-size: 11px;
  font-weight: 600;
}

.quoteForm input,
.quoteForm select,
.quoteForm textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, .13);
  border-radius: 15px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-size: 14px;
}

.quoteForm input,
.quoteForm select {
  min-height: 52px;
  padding: 12px 14px;
}

.quoteForm select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 23px,
    calc(100% - 14px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.quoteForm textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.quoteForm input::placeholder,
.quoteForm textarea::placeholder {
  color: #929aa8;
  opacity: 1;
}

.quoteForm input:focus,
.quoteForm select:focus,
.quoteForm textarea:focus {
  outline: none;
  border-color: rgba(8, 145, 178, .62);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, .11);
}

.formPrivacy {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 14px;
  background: rgba(244, 247, 251, .88);
  color: #667085;
  font-size: 12px;
  line-height: 1.65;
}

.quoteSubmit {
  margin-top: 0;
}

.formDirect {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.formDirect a {
  color: #087c99;
  font-weight: 800;
  text-decoration: none;
}

.formDirect a:hover {
  text-decoration: underline;
}

@media (min-width: 981px) {
  body.is-quote-section-visible .aps-chatbot__launcher {
    width: 54px;
    min-width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 18px;
  }

  body.is-quote-section-visible .aps-chatbot__launcher-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .conversionProofGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversionProofItem:nth-child(3) {
    border-left: 0;
  }

  .conversionProofItem:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
}

@media (max-width: 680px) {
  .heroReassurance {
    display: grid;
    gap: 8px;
    font-size: 11px;
  }

  .conversionProof {
    padding-bottom: 8px;
  }

  .conversionProofGrid,
  .formGridTwo,
  .formGridThree {
    grid-template-columns: 1fr;
  }

  .conversionProofItem + .conversionProofItem {
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-left: 0;
  }

  .conversionProofItem {
    padding: 18px 18px 16px;
  }

  .conversionProofItem::before {
    left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quoteSubmit,
  .aps-chatbot__launcher {
    transition: none;
  }
}
