:root {
  --jdr-shell: #6b452b;
  --jdr-shell-deep: #3a2516;
  --jdr-panel: linear-gradient(180deg, #fffdf9 0%, #f8f4ee 34%, #ebe2d8 100%);
  --jdr-panel-soft: linear-gradient(
    180deg,
    #fffefb 0%,
    #f6f1ea 50%,
    #eae2d8 100%
  );
  --jdr-border: rgba(67, 69, 73, 0.16);
  --jdr-border-strong: rgba(232, 108, 0, 0.22);
  --jdr-text: #1c1c1c;
  --jdr-muted: #5b5148;
  --jdr-accent1: #e86c00;
  --jdr-accent2: #ff9a28;
  --jdr-cream: #fff8ef;
  --jdr-radius: 24px;
  --jdr-radius2: 18px;
  --jdr-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(67, 69, 73, 0.1), 0 10px 24px rgba(24, 18, 12, 0.12);
  --jdr-shell-shadow:
    0 14px 28px rgba(30, 18, 10, 0.16), 0 22px 44px rgba(30, 18, 10, 0.18);
}

.jdr {
  padding: 18px 12px;
  color: var(--jdr-text);
  font-family: inherit;
}

.jdr,
.jdr h1,
.jdr h2,
.jdr h3,
.jdr h4,
.jdr h5,
.jdr h6,
.jdr p,
.jdr label,
.jdr strong,
.jdr small,
.jdr a,
.jdr button,
.jdr input,
.jdr select,
.jdr textarea {
  font-family: inherit !important;
}

.jdr a {
  color: var(--jdr-accent1);
}

.jdr a:hover,
.jdr a:focus-visible {
  color: var(--jdr-accent1);
}

.jdr-shell {
  max-width: 900px;
  margin: 0 auto;
}

.jdr-card {
  position: relative;
  padding: 10px;
  border-radius: var(--jdr-radius);
  background:
    linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.02) 12%,
        rgba(255, 255, 255, 0) 28%
      )
      top / 100% 88px no-repeat,
    linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.12) 14%,
        rgba(0, 0, 0, 0) 28%
      )
      bottom / 100% 92px no-repeat,
    linear-gradient(
      180deg,
      var(--jdr-shell) 0%,
      #8d5a36 52%,
      var(--jdr-shell-deep) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(36, 22, 12, 0.34),
    var(--jdr-shell-shadow);
  overflow: hidden;
}

.jdr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(58, 37, 22, 0.18);
}

.jdr-head,
.jdr-form,
.jdr-foot {
  border: 1px solid var(--jdr-border-strong);
  background:
    linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.54) 0%,
        rgba(255, 255, 255, 0.16) 16%,
        rgba(255, 255, 255, 0) 42%
      )
      top / 100% 72px no-repeat,
    var(--jdr-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 2px 12px rgba(255, 255, 255, 0.22),
    inset 0 -10px 18px rgba(158, 130, 98, 0.1),
    inset 10px 0 18px rgba(170, 145, 115, 0.06),
    inset -10px 0 18px rgba(170, 145, 115, 0.05),
    inset 0 -1px 0 rgba(152, 127, 99, 0.18),
    0 10px 22px rgba(24, 18, 12, 0.1);
}

.jdr-head {
  margin-bottom: 12px;
  padding: 24px 24px 12px;
  border-radius: 20px 20px 18px 18px;
}

.jdr-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.jdr-badge-logo {
  display: block;
  width: auto;
  max-width: min(180px, 42vw);
  height: 42px;
  object-fit: contain;
}

.jdr .jdr-title {
  margin: 14px 0 8px;
  color: var(--jdr-text);
  font-size: clamp(29px, 3.8vw, 41px) !important;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.jdr-sub {
  margin: 0;
  color: var(--jdr-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.jdr-form {
  padding: 8px 24px 24px;
  border-radius: var(--jdr-radius2);
}

.jdr-step {
  padding: 14px 0;
}

.jdr-step h3 {
  margin: 0 0 10px;
  color: var(--jdr-text);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.jdr-help {
  margin: 0 0 16px;
  color: var(--jdr-muted);
  font-size: 18px;
  line-height: 1.55;
}

.jdr-field {
  margin: 14px 0;
}

.jdr-field label {
  display: block;
  margin: 0 0 8px;
  color: var(--jdr-text);
  font-size: 16px;
  font-weight: 800;
}

.jdr-label-required,
.jdr-label-optional {
  color: var(--jdr-accent1);
}

.jdr-label-required {
  margin-left: 2px;
  font-weight: 900;
}

.jdr-label-optional {
  font-weight: 800;
}

.jdr-field input,
.jdr-field select,
.jdr-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(67, 69, 73, 0.18);
  border-radius: 12px;
  background: var(--jdr-panel-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(181, 158, 129, 0.12);
  color: var(--jdr-text);
  font-size: 17px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.jdr-field input::placeholder,
.jdr-field textarea::placeholder {
  color: #7f7266;
}

.jdr-field input:focus,
.jdr-field select:focus,
.jdr-field textarea:focus {
  border-color: rgba(232, 108, 0, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 0 3px rgba(232, 108, 0, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 254, 251, 0.98) 0%,
    rgba(248, 243, 236, 0.98) 100%
  );
}

.jdr-field textarea {
  resize: vertical;
  min-height: 120px;
}

.jdr-field input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
  color: var(--jdr-muted);
  line-height: 1.35;
}

.jdr-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  min-height: 36px;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    var(--jdr-accent2) 0%,
    var(--jdr-accent1) 55%,
    #8c3a00 100%
  );
  box-shadow: 0 8px 16px rgba(104, 47, 6, 0.18);
  color: #fff8ef;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.jdr-field input[type="file"]::-webkit-file-upload-button {
  margin-right: 12px;
  min-height: 36px;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    var(--jdr-accent2) 0%,
    var(--jdr-accent1) 55%,
    #8c3a00 100%
  );
  box-shadow: 0 8px 16px rgba(104, 47, 6, 0.18);
  color: #fff8ef;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.jdr-field input[type="file"]:hover::file-selector-button,
.jdr-field input[type="file"]:focus-visible::file-selector-button,
.jdr-field input[type="file"]:hover::-webkit-file-upload-button,
.jdr-field input[type="file"]:focus-visible::-webkit-file-upload-button {
  background: linear-gradient(180deg, #ffaf4b 0%, #f07a12 100%);
  box-shadow: 0 10px 18px rgba(104, 47, 6, 0.22);
  color: #fffdf9;
}

.jdr-field small {
  display: block;
  margin-top: 8px;
  color: var(--jdr-muted);
  font-size: 14px;
  line-height: 1.5;
}

.jdr-char-counter {
  text-align: right;
  color: rgba(83, 60, 42, 0.72);
}

.jdr-char-counter.is-near-limit {
  color: var(--jdr-accent1);
  font-weight: 700;
}

.jdr-field.is-date {
  cursor: pointer;
}

.jdr-field.is-date input[type="date"] {
  cursor: pointer;
}

.jdr-field input[type="date"] {
  position: relative;
  padding-right: 44px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b452b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

.jdr-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.jdr-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.jdr-choice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(67, 69, 73, 0.14);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.98) 0%,
    rgba(244, 236, 226, 0.96) 100%
  );
  color: var(--jdr-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 2px 10px rgba(255, 255, 255, 0.2),
    inset 0 -8px 14px rgba(161, 133, 101, 0.1),
    inset 8px 0 14px rgba(173, 149, 120, 0.05),
    inset -8px 0 14px rgba(173, 149, 120, 0.04),
    inset 0 -1px 0 rgba(181, 158, 129, 0.1),
    0 6px 14px rgba(30, 18, 10, 0.07);
  cursor: pointer;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease;
}

.jdr-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 108, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 2px 12px rgba(255, 255, 255, 0.24),
    inset 0 -10px 16px rgba(161, 133, 101, 0.12),
    inset 8px 0 16px rgba(173, 149, 120, 0.06),
    inset -8px 0 16px rgba(173, 149, 120, 0.05),
    inset 0 -1px 0 rgba(181, 158, 129, 0.12),
    0 12px 22px rgba(30, 18, 10, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 253, 249, 0.98) 0%,
    rgba(246, 241, 234, 0.98) 100%
  );
}

.jdr-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}

.jdr-choice span {
  flex: 1 1 auto;
}

.jdr-choice strong {
  display: block;
  color: var(--jdr-text);
  font-size: 21.85px;
  font-weight: 800;
  line-height: 1.2;
}

.jdr-choice small {
  display: block;
  margin-top: 6px;
  color: var(--jdr-accent1);
  font-size: 17.25px;
  line-height: 1.45;
}

@supports selector(:has(*)) {
  .jdr-choice:has(input:checked) {
    border-color: rgba(232, 108, 0, 0.38);
    background: linear-gradient(
      180deg,
      rgba(255, 252, 247, 0.98) 0%,
      rgba(241, 230, 216, 0.96) 100%
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      inset 0 2px 12px rgba(255, 255, 255, 0.24),
      inset 0 -12px 18px rgba(161, 133, 101, 0.14),
      inset 8px 0 16px rgba(173, 149, 120, 0.06),
      inset -8px 0 16px rgba(173, 149, 120, 0.05),
      inset 0 -1px 0 rgba(181, 158, 129, 0.14),
      0 14px 26px rgba(30, 18, 10, 0.11);
  }
}

.jdr-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 18px;
}

.jdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid rgba(176, 88, 6, 0.22);
  border-radius: 10px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 160ms ease,
    filter 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.jdr-btn::before,
.jdr-btn::after {
  content: none !important;
  display: none !important;
}

.jdr-btn.primary {
  background: linear-gradient(
    180deg,
    var(--jdr-accent2) 0%,
    var(--jdr-accent1) 55%,
    #8c3a00 100%
  );
  box-shadow: 0 10px 20px rgba(104, 47, 6, 0.22);
  color: var(--jdr-cream);
}

.jdr-btn.primary:hover,
.jdr-btn.primary:focus-visible {
  background: linear-gradient(180deg, #ffaf4b 0%, #f07a12 100%);
  box-shadow: 0 14px 26px rgba(104, 47, 6, 0.26);
  color: #fffdf9;
  text-decoration: none;
}

.jdr-btn.ghost {
  background: linear-gradient(
    180deg,
    var(--jdr-accent2) 0%,
    var(--jdr-accent1) 55%,
    #8c3a00 100%
  );
  box-shadow: 0 10px 20px rgba(104, 47, 6, 0.22);
  color: var(--jdr-cream);
}

.jdr-btn.ghost:hover,
.jdr-btn.ghost:focus-visible {
  background: linear-gradient(180deg, #ffaf4b 0%, #f07a12 100%);
  box-shadow: 0 14px 26px rgba(104, 47, 6, 0.26);
  color: #fffdf9;
  text-decoration: none;
}

.jdr-btn:hover {
  transform: translateY(-1px);
}

.jdr-btn:active {
  transform: translateY(0);
  opacity: 0.96;
}

.jdr-btn:disabled,
.jdr-btn.is-loading {
  opacity: 0.82;
  cursor: not-allowed;
}

.jdr-btn.is-loading {
  pointer-events: none;
}

.jdr-btn .jdr-spin {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid rgba(255, 248, 239, 0.45);
  border-top-color: #fff;
  border-radius: 999px;
  display: inline-block;
  animation: jdrSpin 0.8s linear infinite;
}

.jdr-parts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jdr-part {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jdr-part input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
}

.jdr-part-remove {
  flex: 0 0 auto;
}

.jdr [data-add-part],
.jdr .jdr-part-remove {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.jdr-part-remove[hidden] {
  display: none !important;
}

.jdr-callout,
.jdr-msg,
.jdr-faq,
.jdr-confirm-box {
  border: 1px solid rgba(67, 69, 73, 0.14);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.98) 0%,
    rgba(244, 236, 226, 0.96) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 2px 10px rgba(255, 255, 255, 0.2),
    inset 0 -8px 14px rgba(161, 133, 101, 0.1),
    inset 8px 0 14px rgba(173, 149, 120, 0.05),
    inset -8px 0 14px rgba(173, 149, 120, 0.04),
    inset 0 -1px 0 rgba(181, 158, 129, 0.1);
}

.jdr-callout {
  margin-top: 14px;
  padding: 14px 16px;
  color: var(--jdr-muted);
  font-size: 14px;
  line-height: 1.55;
}

.jdr-callout strong {
  color: var(--jdr-text);
}

.jdr-link {
  margin-top: 10px;
}

.jdr-link a,
.jdr-check a,
.jdr-foot a,
.jdr-faq a {
  color: var(--jdr-accent1);
  font-weight: 700;
  text-decoration: none;
}

.jdr-link a:hover,
.jdr-check a:hover,
.jdr-foot a:hover,
.jdr-faq a:hover {
  text-decoration: underline;
}

.jdr-check {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  gap: 12px;
  padding: 12px 0;
  color: var(--jdr-muted);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}

.jdr-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.jdr-check > span {
  position: relative;
  display: inline-block;
  padding-left: 34px;
  color: var(--jdr-text);
  font-weight: 800;
}

.jdr-check > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(232, 108, 0, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff4e7 0%, #efe2d1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 4px 10px rgba(59, 34, 10, 0.08);
  transition: all 0.2s ease;
}

.jdr-check > span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: calc(0.2em + 4px);
  width: 6px;
  height: 11px;
  border-right: 2px solid #fffdf9;
  border-bottom: 2px solid #fffdf9;
  transform: rotate(45deg) scale(0.7);
  opacity: 0;
  transition: all 0.2s ease;
}

.jdr-check:hover > span::before,
.jdr-check input:focus-visible + span::before {
  border-color: rgba(232, 108, 0, 0.52);
  box-shadow:
    0 0 0 3px rgba(232, 108, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.jdr-check input:checked + span::before {
  background: linear-gradient(180deg, #ffad43 0%, #e86c00 100%);
  border-color: rgba(176, 88, 6, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 12px rgba(104, 47, 6, 0.16);
}

.jdr-check input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.jdr-msg {
  padding: 16px 18px;
}

.jdr-msg.ok {
  border-color: rgba(67, 135, 72, 0.24);
  background: linear-gradient(
    180deg,
    rgba(245, 252, 245, 0.98) 0%,
    rgba(227, 241, 228, 0.96) 100%
  );
}

.jdr-msg.bad {
  border-color: rgba(191, 82, 57, 0.24);
  background: linear-gradient(
    180deg,
    rgba(255, 248, 246, 0.98) 0%,
    rgba(248, 231, 226, 0.96) 100%
  );
}

.jdr-error-card p {
  margin: 0 0 12px;
  color: #b3261e;
}

.jdr-error-card p:last-child {
  margin-bottom: 0;
}

.jdr-mini {
  margin: 10px 0 0;
  color: var(--jdr-muted);
  font-size: 16px;
  line-height: 1.45;
}

.jdr-recaptcha-wrap {
  padding-top: 24px;
}

.jdr-recaptcha-note {
  margin: 0 2px;
  color: rgba(91, 81, 72, 0.92);
  font-size: 12px;
  line-height: 1.45;
}

.jdr-recaptcha-note a {
  color: #7a4314;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(232, 108, 0, 0.42);
  text-underline-offset: 2px;
}

.jdr-recaptcha-note a:hover,
.jdr-recaptcha-note a:focus-visible {
  color: var(--jdr-accent1);
  text-decoration-color: currentColor;
}

.jdr-note2 {
  margin: 10px 0 0;
  color: var(--jdr-accent1);
  font-size: 16px;
}

.jdr-foot {
  margin-top: 12px;
  padding: 16px 20px;
  border-radius: 18px 18px 20px 20px;
  color: var(--jdr-muted);
}

.jdr-faq {
  position: relative;
  margin-top: 16px;
  padding: 20px 6px;
  border: 1px solid rgba(232, 108, 0, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.72) 0,
      rgba(255, 255, 255, 0) 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 254, 251, 0.96) 0%,
      rgba(247, 241, 233, 0.92) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(140, 108, 76, 0.12),
    0 14px 30px rgba(42, 28, 17, 0.08);
}

.jdr-faq::before {
  content: "";
  position: absolute;
  inset: 12px 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.jdr-faq > *:first-child {
  margin-top: 0;
}

.jdr-faq > *:last-child {
  margin-bottom: 0;
}

.jdr-faq-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jdr-faq h1,
.jdr-faq h2,
.jdr-faq h3,
.jdr-faq h4 {
  margin: 18px 0 10px;
  color: var(--jdr-text);
  line-height: 1.18;
}

.jdr-faq h2 {
  font-size: 24px;
  font-weight: 800;
}

.jdr-faq h3 {
  font-size: 19px;
  font-weight: 800;
}

.jdr-faq h4 {
  font-size: 16px;
  font-weight: 800;
}

.jdr-faq p,
.jdr-faq ul,
.jdr-faq ol {
  color: var(--jdr-muted);
  font-size: 18.6px;
  line-height: 1.72;
}

.jdr-faq p {
  margin: 12px 0;
}

.jdr-faq ul,
.jdr-faq ol {
  margin: 12px 0 12px 20px;
}

.jdr-faq li {
  margin: 8px 0;
}

.jdr-faq hr {
  border: 0;
  border-top: 1px solid rgba(232, 108, 0, 0.16);
  margin: 18px 0;
}

.jdr-faq blockquote {
  margin: 14px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--jdr-accent1);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.94) 0%,
    rgba(247, 239, 228, 0.92) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: var(--jdr-muted);
  font-size: 18.6px;
  line-height: 1.72;
}

.jdr-faq a {
  color: #7a4314;
  font-weight: 700;
  text-decoration-color: rgba(232, 108, 0, 0.48);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.jdr-faq a:hover,
.jdr-faq a:focus-visible {
  color: var(--jdr-accent1);
  text-decoration-color: currentColor;
}

.jdr-faq img,
.jdr-faq video {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(67, 69, 73, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(42, 28, 17, 0.08);
}

.jdr-faq table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  color: var(--jdr-muted);
  font-size: 16.8px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
}

.jdr-faq th,
.jdr-faq td {
  border: 1px solid rgba(67, 69, 73, 0.12);
  padding: 12px;
  vertical-align: top;
}

.jdr-faq th {
  color: var(--jdr-text);
  background: rgba(255, 252, 247, 0.92);
}

.jdr-faq details {
  position: relative;
  margin: 10px 0;
  border: 1px solid rgba(232, 108, 0, 0.16);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(249, 243, 235, 0.94) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(42, 28, 17, 0.05);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.jdr-faq-groups > .jdr-faq-category {
  margin: 0;
}

.jdr-faq details::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #8d5a36 0%, var(--jdr-shell) 55%, #5b3b24 100%);
  opacity: 0.78;
  transition:
    opacity 0.18s ease,
    width 0.18s ease;
}

.jdr-faq details:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 108, 0, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 24px rgba(42, 28, 17, 0.08);
}

.jdr-faq details:hover::after,
.jdr-faq details[open]::after {
  width: 4px;
  opacity: 1;
}

.jdr-faq details summary::-webkit-details-marker {
  display: none;
}

.jdr-faq details summary::marker {
  content: "";
}

.jdr-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding: 20px 26px 20px 82px;
  cursor: pointer;
  color: var(--jdr-text);
  font-weight: 800;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.24;
  letter-spacing: -0.01em;
  list-style: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.jdr-faq summary:hover,
.jdr-faq summary:focus-visible {
  color: #2e1b10;
}

.jdr-faq summary::before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    var(--jdr-accent2) 0%,
    var(--jdr-accent1) 55%,
    #8c3a00 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 14px rgba(140, 58, 0, 0.22);
  color: #fff9f1;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.jdr-faq summary:hover::before,
.jdr-faq summary:focus-visible::before {
  background: linear-gradient(180deg, #ffaf4b 0%, #f07a12 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 18px rgba(140, 58, 0, 0.28);
}

.jdr-faq details[open] > summary {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 250, 0.96) 0%,
    rgba(250, 241, 230, 0.9) 100%
  );
  border-bottom: 1px solid rgba(232, 108, 0, 0.14);
}

.jdr-faq .jdr-faq-item[open] {
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.2) 4%, rgba(210, 210, 210, 0.1) 18%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(ellipse 190% 120% at 18% 8%, rgba(255, 255, 255, 0.24) 0%, rgba(197, 197, 197, 0.16) 18%, rgba(255, 181, 105, 0.08) 34%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, rgba(232, 108, 0, 0.12) 0%, rgba(232, 108, 0, 0.05) 12%, rgba(0, 0, 0, 0) 24%),
    linear-gradient(145deg, #474747 0%, #262626 42%, #0f0f0f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 18px 18px 26px rgba(255, 255, 255, 0.04),
    inset -22px -24px 30px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 149, 43, 0.1);
}

.jdr-faq details[open] > summary::before {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.jdr-faq details > :not(summary) {
  margin-left: 22px;
  margin-right: 22px;
}

.jdr-faq .jdr-faq-item[open] > p,
.jdr-faq .jdr-faq-item[open] > ul,
.jdr-faq .jdr-faq-item[open] > ol,
.jdr-faq .jdr-faq-item[open] > blockquote,
.jdr-faq .jdr-faq-item[open] > .wp-block-group,
.jdr-faq .jdr-faq-item[open] > table {
  color: #f3ede3;
}

.jdr-faq .jdr-faq-item[open] li {
  color: #f3ede3;
}

.jdr-faq .jdr-faq-item[open] a {
  color: #ffb55f;
  text-decoration-color: rgba(255, 181, 95, 0.52);
}

.jdr-faq .jdr-faq-item[open] a:hover,
.jdr-faq .jdr-faq-item[open] a:focus-visible {
  color: #ffd29c;
  text-decoration-color: currentColor;
}

.jdr-faq details > :not(summary):last-child {
  margin-bottom: 20px;
}

.jdr-faq details > p:first-of-type,
.jdr-faq details > .wp-block-group:first-of-type,
.jdr-faq details > ul:first-of-type,
.jdr-faq details > ol:first-of-type {
  margin-top: 18px;
}

.jdr-faq .wp-block-group {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid rgba(67, 69, 73, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@keyframes jdrSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .jdr {
    padding: 12px 0;
  }

  .jdr-card {
    padding: 8px;
    border-radius: 22px;
  }

  .jdr-head,
  .jdr-form,
  .jdr-foot {
    border-radius: 16px;
  }

  .jdr-head,
  .jdr-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .jdr-form {
    padding-left: 10px;
    padding-right: 10px;
  }

  .jdr-head {
    padding-top: 18px;
  }

  .jdr-form {
    padding-bottom: 18px;
  }

  .jdr-choices {
    grid-template-columns: 1fr;
  }

  .jdr-choice strong {
    font-size: 20.7px;
  }

  .jdr-actions {
    justify-content: flex-start;
  }

  .jdr-btn {
    width: 100%;
  }

  .jdr-faq {
    width: auto;
    margin-left: 0;
    padding: 4px 6px;
    border-radius: 18px;
  }

  .jdr-faq::before {
    inset: 2px 0;
    border-radius: 12px;
  }

  .jdr-faq details {
    margin: 10px 0;
  }

  .jdr-faq summary {
    min-height: 72px;
    padding: 10px 6px 18px 46px;
    font-size: 17.5px;
    line-height: 1.26;
  }

  .jdr-faq summary::before {
    left: 6px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 18px;
  }

  .jdr-faq p,
  .jdr-faq ul,
  .jdr-faq ol,
  .jdr-faq blockquote {
    font-size: 17.5px;
    line-height: 1.7;
  }

  .jdr-faq table {
    font-size: 15.8px;
  }

  .jdr-faq details > :not(summary) {
    margin-left: 10px;
    margin-right: 10px;
  }

  .jdr-recaptcha-wrap {
    padding-top: 18px;
  }

  .jdr-recaptcha-note {
    font-size: 11px;
  }
}
