.orlov-callback {
  --orlov-ink: #1a1a2e;
  --orlov-ink-soft: #29293f;
  --orlov-gold: #c8a84e;
  --orlov-gold-light: #fdf8ec;
  --orlov-paper: #ffffff;
  --orlov-muted: #74747f;
  --orlov-rule: #e7e4dc;
  --orlov-danger: #b42318;
  --orlov-success: #16794f;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(40px, 6vw, 84px);
  width: min(1200px, calc(100% - 40px));
  margin: clamp(48px, 8vw, 96px) auto;
  padding: clamp(36px, 6vw, 72px);
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 3% 4%, rgba(200, 168, 78, 0.13), transparent 34%),
    var(--orlov-ink);
  color: var(--orlov-paper);
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.orlov-callback::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 3px;
  background: var(--orlov-gold);
}

.orlov-callback *,
.orlov-callback *::before,
.orlov-callback *::after {
  box-sizing: border-box;
}

.orlov-callback__intro,
.orlov-callback__panel {
  position: relative;
  z-index: 1;
}

.orlov-callback__intro {
  align-self: center;
}

.orlov-callback__eyebrow {
  margin: 0 0 14px;
  color: var(--orlov-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.orlov-callback__title {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--orlov-paper);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.orlov-callback__lead {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
}

.orlov-callback__benefits {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.orlov-callback__benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.orlov-callback__check {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(200, 168, 78, 0.55);
  border-radius: 50%;
  color: var(--orlov-gold);
  font-size: 14px;
  font-weight: 700;
}

.orlov-callback__panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  color: var(--orlov-ink);
}

.orlov-callback__form {
  display: grid;
  gap: 20px;
  margin: 0;
}

.orlov-callback__field {
  display: grid;
  gap: 8px;
}

.orlov-callback__field label {
  color: var(--orlov-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.orlov-callback__field input {
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--orlov-rule);
  border-radius: 10px;
  outline: none;
  background: #fbfaf7;
  color: var(--orlov-ink);
  font: 16px/1.4 Arial, sans-serif;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  appearance: none;
}

.orlov-callback__field input::placeholder {
  color: #92919a;
  opacity: 1;
}

.orlov-callback__field input:hover {
  border-color: #cdc7b7;
}

.orlov-callback__field input:focus {
  border-color: var(--orlov-gold);
  background: var(--orlov-paper);
  box-shadow: 0 0 0 4px rgba(200, 168, 78, 0.16);
}

.orlov-callback__field input[aria-invalid='true'] {
  border-color: var(--orlov-danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.orlov-callback__field-error {
  min-height: 0;
  color: var(--orlov-danger);
  font-size: 12px;
  line-height: 1.4;
}

.orlov-callback__field-error:empty {
  display: none;
}

.orlov-callback__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.orlov-callback__consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  color: var(--orlov-muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.orlov-callback__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orlov-gold);
}

.orlov-callback__consent a {
  color: var(--orlov-ink);
  text-decoration-color: rgba(26, 26, 46, 0.35);
  text-underline-offset: 2px;
}

.orlov-callback__consent a:hover {
  color: #8a712e;
}

.orlov-callback__consent input:focus-visible {
  outline: 3px solid rgba(200, 168, 78, 0.4);
  outline-offset: 3px;
}

.orlov-callback__consent-error {
  margin-top: -14px;
}

.orlov-callback__submit {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0 0;
  padding: 14px 18px 14px 22px;
  border: 1px solid var(--orlov-gold);
  border-radius: 10px;
  background: var(--orlov-gold);
  color: var(--orlov-ink);
  cursor: pointer;
  font: 700 15px/1.2 Arial, sans-serif;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.orlov-callback__submit:hover {
  background: #d5b75f;
  box-shadow: 0 10px 24px rgba(98, 77, 19, 0.2);
  transform: translateY(-1px);
}

.orlov-callback__submit:focus-visible {
  outline: 3px solid var(--orlov-ink);
  outline-offset: 3px;
}

.orlov-callback__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.orlov-callback__submit-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.1);
  font-size: 18px;
}

.orlov-callback__status {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.orlov-callback__status.is-success,
.orlov-callback__status.is-error {
  display: block;
}

.orlov-callback__status.is-success {
  background: #eaf7f0;
  color: var(--orlov-success);
}

.orlov-callback__status.is-error {
  background: #fff0ee;
  color: var(--orlov-danger);
}

@media (max-width: 900px) {
  .orlov-callback {
    grid-template-columns: 1fr;
    gap: 36px;
    width: min(720px, calc(100% - 32px));
  }

  .orlov-callback__lead {
    max-width: 620px;
  }

  .orlov-callback__benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .orlov-callback__benefits li {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .orlov-callback {
    gap: 28px;
    width: calc(100% - 24px);
    margin: 36px auto;
    padding: 28px 20px 20px;
    border-radius: 14px;
  }

  .orlov-callback__title {
    font-size: clamp(29px, 10vw, 38px);
  }

  .orlov-callback__lead {
    font-size: 15px;
  }

  .orlov-callback__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 22px;
  }

  .orlov-callback__panel {
    margin: 0 -8px;
    padding: 24px 18px;
    border-radius: 12px;
  }

  .orlov-callback__field input,
  .orlov-callback__submit {
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orlov-callback *,
  .orlov-callback *::before,
  .orlov-callback *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
