:root {
  --aw-blue: #17304f;
  --aw-text: #25364a;
  --aw-orange: #e87722;
  --aw-orange-hover: #c95f14;
  --aw-light: #f5f7fa;
  --aw-white: #ffffff;
  --aw-border: rgba(23, 48, 79, 0.12);
  --aw-shadow: 0 8px 24px rgba(23, 48, 79, 0.08);
  --aw-radius-section: 16px;
  --aw-radius-card: 18px;
  --aw-inner-max: 1600px;
  --aw-inner-padding: 40px;
  --aw-inner-padding-mobile: 18px;
}

.aw-anfrage-section {
  width: 100%;
  background: var(--aw-light);
  border-radius: var(--aw-radius-section);
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 48px 0 56px 0;
  box-sizing: border-box;
}

.aw-anfrage-inner {
  width: 100%;
  max-width: var(--aw-inner-max);
  margin: 0 auto;
  padding: 0 var(--aw-inner-padding);
  box-sizing: border-box;
}

.aw-anfrage-head {
  max-width: 900px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.aw-anfrage-kicker {
  margin: 0 0 8px 0;
  color: var(--aw-orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aw-anfrage-head h1 {
  margin: 0 0 14px 0;
  color: var(--aw-blue);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 900;
}

.aw-anfrage-head p {
  margin: 0 auto;
  color: var(--aw-text);
  font-size: 17px;
  line-height: 1.65;
}

.aw-anfrage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.aw-anfrage-main,
.aw-sidebar-card {
  background: var(--aw-white);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-card);
  box-shadow: var(--aw-shadow);
  box-sizing: border-box;
}

.aw-anfrage-main {
  padding: 30px;
}

.aw-prefill-banner {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(232, 119, 34, 0.12);
  color: var(--aw-blue);
  font-size: 15px;
  font-weight: 800;
}

.aw-prefill-banner.is-visible {
  display: block;
}

.aw-trust-box {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--aw-light);
  border: 1px solid var(--aw-border);
  color: var(--aw-text);
}

.aw-trust-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--aw-blue);
  font-size: 18px;
}

.aw-trust-box span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.aw-required-note {
  margin: 0 0 12px 0;
  color: var(--aw-text);
  font-size: 14px;
}

.aw-required-note span,
.aw-field label span,
.aw-ds-box label span {
  color: var(--aw-orange);
  font-weight: 900;
}

.aw-form-card {
  margin-bottom: 18px;
  padding: 24px;
  background: var(--aw-light);
  border: 1px solid var(--aw-border);
  border-radius: 16px;
  box-sizing: border-box;
}

.aw-card-title {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--aw-border);
  color: var(--aw-blue);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.aw-form-grid {
  display: grid;
  gap: 16px;
}

.aw-form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aw-form-grid + .aw-form-grid,
.aw-field + .aw-form-grid,
.aw-form-grid + .aw-field {
  margin-top: 16px;
}

.aw-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--aw-blue);
  font-size: 14px;
  font-weight: 800;
}

.aw-field input,
.aw-field select,
.aw-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(23, 48, 79, 0.22);
  background: var(--aw-white);
  color: var(--aw-blue);
  font-size: 16px;
  box-sizing: border-box;
}

.aw-field input:focus,
.aw-field select:focus,
.aw-field textarea:focus {
  outline: none;
  border-color: var(--aw-orange);
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.16);
}

.aw-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

.aw-field input[readonly] {
  background: #eef3f7;
  color: var(--aw-text);
  font-weight: 700;
}

.aw-field input.aw-prefilled,
.aw-field select.aw-prefilled {
  background: #fff7ef;
  border-color: rgba(232, 119, 34, 0.45);
  font-weight: 800;
}

.aw-captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border-radius: 12px;
  background: var(--aw-white);
  border: 1px solid rgba(23, 48, 79, 0.16);
}

.aw-captcha-question {
  padding: 7px 16px;
  border-radius: 10px;
  background: var(--aw-blue);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.aw-captcha-input {
  width: 90px !important;
  text-align: center;
  font-weight: 900;
}

.aw-captcha-reset {
  margin-top: 10px;
  border: 1px solid var(--aw-border);
  background: var(--aw-white);
  color: var(--aw-blue);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.aw-captcha-error {
  display: none;
  margin-top: 10px;
  color: #b42318;
  font-size: 14px;
  font-weight: 800;
}

.aw-captcha-error.is-visible {
  display: block;
}

.aw-ds-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: var(--aw-white);
  border: 1px solid rgba(23, 48, 79, 0.16);
}

.aw-ds-box input {
  margin-top: 4px;
  min-width: 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--aw-orange);
}

.aw-ds-box label {
  color: var(--aw-text);
  font-size: 14px;
  line-height: 1.55;
}

.aw-ds-box a {
  color: var(--aw-blue);
  font-weight: 800;
}

.aw-honeypot {
  display: none;
}

.aw-error-box {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff0f0;
  border: 1px solid #e74c3c;
  color: #b42318;
  font-size: 15px;
  font-weight: 800;
}

.aw-error-box.is-visible {
  display: block;
}

.aw-submit-button {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--aw-orange);
  color: #ffffff;
  padding: 16px 26px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.aw-submit-button:hover {
  background: var(--aw-orange-hover);
  transform: translateY(-1px);
}

.aw-submit-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.aw-success-box {
  display: none;
  margin-top: 18px;
  padding: 28px;
  border-radius: 16px;
  background: var(--aw-blue);
  color: #ffffff;
  text-align: center;
}

.aw-success-box.is-visible {
  display: block;
}

.aw-success-icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.aw-success-box h3 {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: 24px;
}

.aw-success-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.aw-anfrage-sidebar {
  display: grid;
  gap: 18px;
}

.aw-sidebar-card {
  padding: 24px;
}

.aw-sidebar-card h2 {
  margin: 0 0 16px 0;
  color: var(--aw-blue);
  font-size: 22px;
  line-height: 1.25;
}

.aw-sidebar-card p,
.aw-sidebar-card li {
  color: var(--aw-text);
  font-size: 15px;
  line-height: 1.6;
}

.aw-sidebar-card p {
  margin: 0 0 16px 0;
}

.aw-sidebar-card p:last-child {
  margin-bottom: 0;
}

.aw-sidebar-card a {
  color: var(--aw-blue);
  font-weight: 800;
}

.aw-sidebar-card ul {
  margin: 0;
  padding-left: 20px;
}

.aw-sidebar-card li + li {
  margin-top: 8px;
}
.aw-success-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--aw-orange);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.aw-success-home-button:hover,
.aw-success-home-button:focus {
  background: var(--aw-orange-hover);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
@media (max-width: 1050px) {
  .aw-anfrage-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .aw-anfrage-section {
    padding: 36px 0 42px 0;
  }

  .aw-anfrage-inner {
    padding: 0 var(--aw-inner-padding-mobile);
  }

  .aw-anfrage-main,
  .aw-sidebar-card {
    padding: 22px 18px;
  }

  .aw-form-card {
    padding: 20px 18px;
  }

  .aw-form-grid-2 {
    grid-template-columns: 1fr;
  }

  .aw-ds-box {
    align-items: flex-start;
  }
}