.withdrawal-page {
  width: 100%;
}

.withdrawal-hero,
.withdrawal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
  width: 100%;
}

.withdrawal-hero {
  margin-bottom: 22px;
}

.withdrawal-hero__copy,
.withdrawal-hero__side,
.withdrawal-form,
.withdrawal-info article {
  border: 1px solid rgba(90, 70, 50, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(40, 28, 18, 0.07);
  min-width: 0;
}

.withdrawal-hero__copy {
  padding: 26px;
}

.withdrawal-eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #8a5b2a;
}

.withdrawal-hero h3,
.withdrawal-info h3 {
  margin: 0 0 12px;
  color: var(--headline, #241b14);
  line-height: 1.28;
}

.withdrawal-hero h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.withdrawal-hero p,
.withdrawal-info p,
.withdrawal-actions p {
  line-height: 1.66;
  color: var(--text, #2b2520);
}

.withdrawal-hero p,
.withdrawal-info p {
  margin: 0 0 12px;
}

.withdrawal-hero p:last-child,
.withdrawal-info p:last-child {
  margin-bottom: 0;
}

.withdrawal-hint {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(246, 239, 229, 0.84);
  border: 1px solid rgba(138, 91, 42, 0.18);
  font-weight: 700;
}

.withdrawal-hero__side {
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(135deg, rgba(247, 235, 214, 0.94), rgba(255, 255, 255, 0.86));
}

.withdrawal-duck-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  width: 100%;
  max-width: 280px;
  padding: 24px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(90, 70, 50, 0.12);
}

.withdrawal-duck-card__icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: rgba(255, 211, 91, 0.22);
  overflow: hidden;
}

.withdrawal-duck-card__icon img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.withdrawal-duck-card strong {
  font-size: 1.18rem;
  color: var(--headline, #241b14);
}

.withdrawal-duck-card small {
  line-height: 1.45;
  color: rgba(43, 37, 32, 0.78);
}

.withdrawal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.withdrawal-field {
  min-width: 0;
}

.withdrawal-field--full,
.withdrawal-actions,
.withdrawal-status {
  grid-column: 1 / -1;
}

.withdrawal-field--hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.withdrawal-field label {
  display: block;
  margin: 0 0 7px;
  font-weight: 800;
  color: var(--headline, #241b14);
}

.withdrawal-field label span {
  color: #9b4f24;
}

.withdrawal-field label small {
  font-weight: 700;
  color: rgba(43, 37, 32, 0.64);
}

.withdrawal-field input,
.withdrawal-field textarea {
  width: 100%;
  border: 1px solid rgba(90, 70, 50, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text, #2b2520);
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.withdrawal-field textarea {
  resize: vertical;
  min-height: 142px;
}

.withdrawal-field input:focus,
.withdrawal-field textarea:focus {
  border-color: rgba(138, 91, 42, 0.55);
  box-shadow: 0 0 0 4px rgba(138, 91, 42, 0.1);
}

.withdrawal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

.withdrawal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #8a5b2a;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(138, 91, 42, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.withdrawal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(138, 91, 42, 0.26);
}

.withdrawal-submit:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.withdrawal-actions p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 0.94rem;
  color: rgba(43, 37, 32, 0.76);
}

.withdrawal-status {
  display: none;
  padding: 13px 15px;
  border-radius: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.withdrawal-status.is-success,
.withdrawal-status.is-error {
  display: block;
}

.withdrawal-status.is-success {
  background: rgba(46, 125, 50, 0.1);
  color: #265c2a;
  border: 1px solid rgba(46, 125, 50, 0.22);
}

.withdrawal-status.is-error {
  background: rgba(160, 55, 35, 0.1);
  color: #7a2b1c;
  border: 1px solid rgba(160, 55, 35, 0.22);
}

.withdrawal-info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.withdrawal-info article {
  padding: 22px;
}

.withdrawal-video-card {
  background: linear-gradient(135deg, rgba(255, 246, 230, 0.96), rgba(255, 255, 255, 0.9));
}

.withdrawal-video-card[hidden] {
  display: none;
}

.withdrawal-video-card video {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 28px rgba(40, 28, 18, 0.1);
}

@media (max-width: 900px) {
  .withdrawal-hero,
  .withdrawal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .withdrawal-hero__copy,
  .withdrawal-hero__side,
  .withdrawal-form,
  .withdrawal-info article {
    padding: 18px;
    border-radius: 16px;
  }

  .withdrawal-form {
    grid-template-columns: 1fr;
  }

  .withdrawal-field--full,
  .withdrawal-actions,
  .withdrawal-status {
    grid-column: auto;
  }

  .withdrawal-actions {
    align-items: stretch;
  }

  .withdrawal-submit {
    width: 100%;
  }
}
