.awy-simulator {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #f7d8b0;
  border-radius: 18px;
  padding: 36px 40px;
  max-width: 1280px;
  margin: 24px auto;
  box-shadow: 0 24px 48px -24px rgba(249, 184, 114, 0.45);
}

.awy-header {
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-bottom: 24px;
}

.awy-header__image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 24px;
  background: #fff7ed;
  box-shadow: 0 16px 30px -22px rgba(249, 184, 114, 0.6);
}

.awy-header__title {
  margin: 0;
  font-size: 28px;
  color: #0f172a;
}

.awy-progress {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  align-items: center;
  text-align: center;
}

.awy-progress__label {
  font-weight: 600;
}

.awy-progress__bar {
  position: relative;
  background: #fff3e3;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  width: min(420px, 100%);
}

.awy-progress__value {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f9b872, #f78a3d);
}

.awy-step__header {
  text-align: center;
}

.awy-step__title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.awy-step__header h3 {
  font-size: 24px;
  margin: 0;
}

.awy-step__tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a5a18;
  background: rgba(249, 184, 114, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
}

.awy-step__tag--multiple {
  color: #8f4f12;
  background: rgba(249, 184, 114, 0.32);
}

.awy-step__header p {
  color: #475569;
  margin: 6px 0 24px;
  line-height: 1.5;
}

.awy-step__helper {
  margin: 0 0 24px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
}

.awy-step__header p + .awy-step__helper {
  margin-top: -12px;
}

.awy-step__options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.awy-step__options .awy-option {
  width: min(240px, 100%);
}

.awy-option {
  display: block;
  position: relative;
  border: 1px solid #F2F3F5;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 24px -20px rgba(15, 23, 42, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.awy-option::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid #f97316;
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}

.awy-option.is-active {
  border-color: #f97316;
  box-shadow: 0 18px 30px -18px rgba(249, 115, 22, 0.5);
  background: #ffffff;
}

.awy-option:hover,
.awy-option:focus-within {
  border-color: #f97316;
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -20px rgba(249, 115, 22, 0.55),
    0 10px 20px -14px rgba(15, 23, 42, 0.35);
}

.awy-option:hover::after,
.awy-option:focus-within::after {
  opacity: 1;
  animation: awy-border-pulse 1.6s ease-in-out infinite;
}

@keyframes awy-border-pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.awy-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.awy-option__header {
  display: flex;
  align-items: center;
}

.awy-option__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.awy-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(249, 184, 114, 0.2);
  font-size: 22px;
}

.awy-option__label {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.awy-option__description {
  margin: 12px 0 0;
  color: #475569;
  line-height: 1.5;
}

.awy-option__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 12px;
  background: #fff3e3;
}

.awy-option__video {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 12px;
  background: #fff3e3;
  display: block;
}

.awy-option--category .awy-option__content {
  text-align: center;
}

.awy-option--category .awy-option__header {
  justify-content: center;
}

.awy-option--category .awy-option__title {
  justify-content: center;
}

.awy-option--category .awy-option__description {
  text-align: center;
}

.awy-option--category .awy-option__image {
  margin: 0 0 12px;
}

.awy-option--category .awy-option__video {
  margin: 0 0 12px;
}

.awy-option__custom-field {
  margin-top: 12px;
  display: none;
}

.awy-option__custom-field.is-visible {
  display: block;
}

.awy-option__custom-field input {
  width: 100%;
  border: 1px solid #f5d1a3;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  color: #1e293b;
  background: #ffffff;
}

.awy-option__custom-field input:focus {
  outline: 2px solid rgba(249, 184, 114, 0.6);
  border-color: #f9b872;
}

.awy-option--multiple {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.awy-option--multiple input[type="checkbox"] {
  position: static;
  opacity: 1;
  pointer-events: auto;
  margin-top: 6px;
  width: 18px;
  height: 18px;
  accent-color: #f9b872;
}

.awy-option--multiple .awy-option__content {
  flex: 1 1 auto;
}

.awy-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.awy-add-service__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.awy-add-service__actions .awy-button {
  flex: 1 1 240px;
}

.awy-actions__spacer {
  flex: 1 1 auto;
}

.awy-button {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f9b872, #f68b3d);
  color: #3a2a1a;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 16px 30px -20px rgba(249, 184, 114, 0.75);
}

.awy-button:hover:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -20px rgba(247, 138, 61, 0.55);
}

.awy-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.awy-button--ghost {
  background: transparent;
  color: #a05917;
  border: 1px solid rgba(249, 184, 114, 0.6);
}

.awy-summary {
  margin-top: 24px;
  border-top: 1px solid #f5d1a3;
  padding-top: 24px;
}

.awy-summary__title {
  margin: 0;
  font-size: 20px;
}

.awy-summary__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 16px;
}

.awy-summary__group h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #a05917;
}

.awy-summary__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.awy-summary__group li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 15px;
  color: #1e293b;
  gap: 16px;
}

.awy-summary__group li span:first-child {
  flex: 1 1 auto;
}

.awy-summary__group li span:last-child {
  white-space: nowrap;
  font-weight: 600;
  color: #0f172a;
}

.awy-summary__custom {
  display: block;
  font-size: 13px;
  color: #475569;
  font-weight: 400;
  margin-top: 4px;
}

.awy-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f5d1a3;
}

.awy-summary__total span:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #a05917;
}

.awy-summary__total span:last-child {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.awy-summary__note {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #f5d1a3;
  background: #fff7ed;
  border-radius: 12px;
  font-size: 14px;
  color: #1f2937;
  display: grid;
  gap: 12px;
}

.awy-summary__note p {
  margin: 0;
  line-height: 1.5;
}

.awy-summary__note strong {
  display: block;
  margin-bottom: 4px;
  color: #a05917;
}

.awy-contact h3 {
  margin-top: 32px;
  font-size: 20px;
}

.awy-contact p {
  color: #475569;
  line-height: 1.5;
}

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

.awy-contact label span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #a05917;
}

.awy-contact input,
.awy-contact textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #f5d1a3;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  resize: vertical;
}

.awy-contact input:focus,
.awy-contact textarea:focus {
  border-color: #f9b872;
  box-shadow: 0 0 0 4px rgba(249, 184, 114, 0.35);
  outline: none;
}

.awy-contact__privacy {
  font-size: 13px;
  color: #64748b;
  margin: 12px 0 0;
}

.awy-success {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

@media (max-width: 640px) {
  .awy-simulator {
    padding: 24px 18px;
  }

  .awy-grid {
    grid-template-columns: 1fr;
  }

  .awy-step__options {
    grid-template-columns: 1fr;
  }
}