.pup-contact-wrap {
  max-width: 720px;
}

.pup-contact-notice {
  border-radius: 4px;
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 14px;
}

.pup-contact-notice ul {
  margin: 0;
  padding-left: 18px;
}

.pup-contact-success {
  background: #e8f6ec;
  border: 1px solid #a5d6b1;
  color: #1e5d2d;
}

.pup-contact-error {
  background: #fdecec;
  border: 1px solid #f4b4b4;
  color: #8b1f1f;
}

.pup-contact-form {
  display: grid;
  gap: 16px;
}

.pup-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pup-contact-field {
  display: grid;
  gap: 6px;
}

.pup-contact-field label {
  color: #3f3f3f;
  font-size: 16px;
  font-weight: 600;
}

.pup-contact-field input,
.pup-contact-field textarea {
  border: 1px solid #8d8d8d;
  border-radius: 2px;
  color: #212121;
  font-size: 16px;
  line-height: 1.2;
  min-height: 46px;
  padding: 8px 10px;
  width: 100%;
}

.pup-contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.pup-contact-counter {
  color: #666;
  font-size: 13px;
  text-align: right;
}

.pup-contact-honeypot {
  left: -10000px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.pup-contact-submit {
  background: #d64614;
  border: 0;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 22px;
  width: fit-content;
}

.pup-contact-submit:hover {
  background: #be3d11;
}

.pup-faq-accordion {
  --pup-faq-accent: #d64614;
  --pup-faq-accent-soft: #ffe8df;
  --pup-faq-border: #edd8cf;
  --pup-faq-surface: #fffdfc;
  --pup-faq-text: #211b18;
  --pup-faq-subtle: #6e5f58;
  background: radial-gradient(circle at top right, #fff4ef 0%, var(--pup-faq-surface) 48%, #fff 100%);
  border: 1px solid var(--pup-faq-border);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(70, 36, 22, 0.1);
  padding: 10px;
}

.pup-faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: 14px;
  margin: 8px 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  animation: pup-faq-intro 0.32s ease both;
}

.pup-faq-item:last-child {
  margin-bottom: 0;
}

.pup-faq-item summary {
  align-items: center;
  color: var(--pup-faq-text);
  cursor: pointer;
  display: flex;
  font-size: 19px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.01em;
  list-style: none;
  line-height: 1.35;
  padding: 18px 22px 18px 62px;
  position: relative;
}

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

.pup-faq-item summary::before {
  content: "+";
  align-items: center;
  background: var(--pup-faq-accent-soft);
  border-radius: 999px;
  color: var(--pup-faq-accent);
  display: inline-flex;
  font-size: 24px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  left: 18px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 30px;
}

.pup-faq-item[open] summary::before {
  background: var(--pup-faq-accent);
  color: #fff;
  content: "-";
}

.pup-faq-answer {
  color: var(--pup-faq-text);
  font-size: 17px;
  line-height: 1.65;
  padding: 2px 22px 20px 62px;
}

.pup-faq-item[open] .pup-faq-answer {
  animation: pup-faq-reveal 0.24s ease both;
}

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

.pup-faq-answer p:last-child {
  margin-bottom: 0;
}

.pup-faq-question {
  display: block;
}

.pup-faq-item:hover {
  border-color: #f0c4b1;
  box-shadow: 0 8px 20px rgba(70, 36, 22, 0.08);
  transform: translateY(-1px);
}

.pup-faq-item[open] {
  background: #fff;
  border-color: #e7b8a3;
  box-shadow: 0 12px 26px rgba(70, 36, 22, 0.12);
}

.pup-faq-item summary:focus-visible {
  outline: 2px solid #f1a182;
  outline-offset: -2px;
}

.pup-faq-answer ul,
.pup-faq-answer ol {
  margin: 0 0 12px 18px;
}

.pup-faq-answer li + li {
  margin-top: 4px;
}

.pup-faq-empty {
  background: #fffdfb;
  border: 1px dashed #d9bdb0;
  border-radius: 12px;
  color: #6d5b52;
  font-size: 15px;
  padding: 14px 16px;
}

.pup-faq-item:nth-child(2) {
  animation-delay: 0.03s;
}

.pup-faq-item:nth-child(3) {
  animation-delay: 0.06s;
}

.pup-faq-item:nth-child(4) {
  animation-delay: 0.09s;
}

.pup-faq-item:nth-child(5) {
  animation-delay: 0.12s;
}

.pup-faq-item:nth-child(6) {
  animation-delay: 0.15s;
}

@keyframes pup-faq-intro {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pup-faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pup-faq-item,
  .pup-faq-item[open] .pup-faq-answer {
    animation: none;
  }

  .pup-faq-item,
  .pup-faq-item summary::before {
    transition: none;
  }
}

@media (max-width: 768px) {
  .pup-contact-grid {
    grid-template-columns: 1fr;
  }

  .pup-contact-field input,
  .pup-contact-field textarea {
    font-size: 17px;
  }

  .pup-contact-submit {
    font-size: 17px;
  }

  .pup-faq-accordion {
    border-radius: 14px;
    padding: 8px;
  }

  .pup-faq-item summary {
    font-size: 17px;
    padding: 16px 14px 16px 50px;
  }

  .pup-faq-item summary::before {
    font-size: 22px;
    height: 26px;
    left: 14px;
    width: 26px;
  }

  .pup-faq-answer {
    font-size: 16px;
    line-height: 1.58;
    padding: 0 14px 16px 50px;
  }
}
