#jrr-v5-app.conveo-contact-form {
  font-family: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #092833;
  width: 100%;
}

#jrr-v5-app .conveo-form {
  width: 100%;
  max-width: 760px;
  background: #fdfdfd;
  border: 1px solid #ddeccb;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(9, 40, 51, 0.08);
  padding: 40px;
}

#jrr-v5-app .conveo-form__title {
  margin: 0 0 34px;
  color: #092833;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

#jrr-v5-app .conveo-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

#jrr-v5-app .conveo-field {
  margin-bottom: 16px;
}

#jrr-v5-app .conveo-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #2f6b2f;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

#jrr-v5-app .conveo-field input,
#jrr-v5-app .conveo-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid #d8e8c6;
  border-radius: 14px;
  background: #ffffff;
  color: #092833;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-sizing: border-box;
}

#jrr-v5-app .conveo-field input[type="date"] {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: light;
}

#jrr-v5-app .conveo-field input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.4em;
  text-align: left;
}

#jrr-v5-app .conveo-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

#jrr-v5-app .conveo-field textarea {
  resize: vertical;
}

#jrr-v5-app .conveo-field input::placeholder,
#jrr-v5-app .conveo-field textarea::placeholder {
  color: #7b8d84;
}

#jrr-v5-app .conveo-field input:focus,
#jrr-v5-app .conveo-field textarea:focus {
  border-color: #8bc53f;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 197, 63, 0.16);
}

#jrr-v5-app .conveo-topic-field {
  position: relative;
  z-index: 5;
}

#jrr-v5-app .conveo-topic-field.is-open {
  z-index: 50;
}

#jrr-v5-app .conveo-topic-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-height: 68px;
  border: 1px solid #d8e8c6;
  border-radius: 18px;
  background: #f7fbf2;
  box-shadow: 0 15px 35px rgba(47, 107, 47, 0.08);
  color: #092833;
  cursor: pointer;
  font: inherit;
  padding: 13px 16px;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  overflow: hidden;
}

#jrr-v5-app .conveo-topic-toggle:hover,
#jrr-v5-app .conveo-topic-field.is-open .conveo-topic-toggle {
  border-color: #8bc53f;
  background: #f3fae8;
  box-shadow: 0 18px 40px rgba(47, 107, 47, 0.12);
}

#jrr-v5-app .conveo-topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #ffffff;
  color: #2f8edb;
  box-shadow: 0 12px 25px rgba(9, 40, 51, 0.08);
  flex: 0 0 auto;
}

#jrr-v5-app .conveo-topic-icon svg {
  width: 20px;
  height: 20px;
}

#jrr-v5-app .conveo-topic-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 3px;
}

#jrr-v5-app .conveo-topic-copy strong,
#jrr-v5-app .conveo-topic-copy small,
#jrr-v5-app .conveo-topic-option strong,
#jrr-v5-app .conveo-topic-option small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

#jrr-v5-app .conveo-topic-copy strong,
#jrr-v5-app .conveo-topic-copy small {
  white-space: nowrap;
}

#jrr-v5-app .conveo-topic-copy strong,
#jrr-v5-app .conveo-topic-option strong {
  color: #092833;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

#jrr-v5-app .conveo-topic-copy small,
#jrr-v5-app .conveo-topic-option small {
  display: block;
  margin-top: 3px;
  color: #66756b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

#jrr-v5-app .conveo-topic-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #eaf6ee;
  color: #2f6b2f;
  transition: transform 0.2s;
}

#jrr-v5-app .conveo-topic-arrow svg {
  width: 16px;
  height: 16px;
}

#jrr-v5-app .conveo-topic-field.is-open .conveo-topic-arrow {
  transform: rotate(180deg);
}

#jrr-v5-app .conveo-topic-menu {
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 20;
  max-height: 310px;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(253, 253, 253, 0.98);
  border-radius: 0 0 18px 18px;
  border: 1px solid #d8e8c6;
  border-top: 0;
  box-shadow: 0 24px 55px rgba(9, 40, 51, 0.16);
  padding: 10px 0;
}

#jrr-v5-app .conveo-topic-menu::-webkit-scrollbar {
  width: 10px;
}

#jrr-v5-app .conveo-topic-menu::-webkit-scrollbar-track {
  background: #f3fae8;
  border-radius: 999px;
}

#jrr-v5-app .conveo-topic-menu::-webkit-scrollbar-thumb {
  background: #8bc53f;
  border: 3px solid #f3fae8;
  border-radius: 999px;
}

#jrr-v5-app .conveo-topic-field.is-open .conveo-topic-menu {
  display: block;
}

#jrr-v5-app .conveo-topic-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 10px 18px;
  text-align: left;
  transition: background-color 0.2s;
  overflow: hidden;
}

#jrr-v5-app .conveo-topic-option > span:last-child {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

#jrr-v5-app .conveo-topic-option strong,
#jrr-v5-app .conveo-topic-option small {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

#jrr-v5-app .conveo-topic-option:hover,
#jrr-v5-app .conveo-topic-option.is-selected {
  background: #f3fae8;
}

#jrr-v5-app .conveo-topic-option.is-selected .conveo-topic-icon {
  background: #8bc53f;
  color: #092833;
}

#jrr-v5-app .conveo-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6b2f 0%, #1c5a2a 100%);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  box-shadow: 0 14px 28px rgba(47, 107, 47, 0.22);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

#jrr-v5-app .conveo-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(47, 107, 47, 0.28);
}

#jrr-v5-app .conveo-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

#jrr-v5-app .conveo-form__status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
}

#jrr-v5-app .conveo-form__status--success {
  color: #15803d;
}

#jrr-v5-app .conveo-form__status--error {
  color: #b91c1c;
}

#jrr-v5-app .conveo-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 640px) {
  #jrr-v5-app.conveo-contact-form {
    overflow-x: hidden;
  }

  #jrr-v5-app .conveo-form {
    padding: 20px;
    border-radius: 20px;
    overflow: visible;
  }

  #jrr-v5-app .conveo-form__title {
    font-size: 24px;
    margin-bottom: 26px;
  }

  #jrr-v5-app .conveo-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #jrr-v5-app .conveo-topic-toggle,
  #jrr-v5-app .conveo-topic-option {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  #jrr-v5-app .conveo-topic-toggle {
    min-height: 62px;
    border-radius: 16px;
  }

  #jrr-v5-app .conveo-topic-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  #jrr-v5-app .conveo-topic-icon svg {
    width: 18px;
    height: 18px;
  }

  #jrr-v5-app .conveo-topic-arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  #jrr-v5-app .conveo-topic-arrow svg {
    width: 14px;
    height: 14px;
  }

  #jrr-v5-app .conveo-topic-copy strong,
  #jrr-v5-app .conveo-topic-option strong {
    font-size: 15px;
  }

  #jrr-v5-app .conveo-topic-copy small,
  #jrr-v5-app .conveo-topic-option small {
    font-size: 12px;
  }

  #jrr-v5-app .conveo-topic-menu {
    max-height: 280px;
    border-radius: 0 0 16px 16px;
  }

  #jrr-v5-app .conveo-topic-option {
    align-items: flex-start;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  #jrr-v5-app .conveo-field input[type="date"] {
    min-width: 0;
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    padding-right: 12px;
  }

  #jrr-v5-app .conveo-field input[type="date"]::-webkit-date-and-time-value {
    width: auto;
    min-width: 0;
  }
}
