.sbrfq-section,
.sbrfq-section * {
  box-sizing: border-box;
}

.sbrfq-section {
  --sbrfq-navy: #17264f;
  --sbrfq-deep: #171047;
  --sbrfq-purple: #9613c4;
  --sbrfq-magenta: #c02fb0;
  --sbrfq-blue: #159ee8;
  --sbrfq-text: #23345f;
  --sbrfq-muted: #667085;
  --sbrfq-border: #dbe4f0;
  --sbrfq-soft: #f7eafe;
  --sbrfq-panel: rgba(255, 255, 255, 0.94);
  width: 100%;
  padding: clamp(34px, 5vw, 74px) 16px;
  color: var(--sbrfq-text);
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.sbrfq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(150, 19, 196, 0.13), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(21, 158, 232, 0.11), transparent 26%),
    linear-gradient(135deg, rgba(23, 38, 79, 0.05), transparent 42%);
  pointer-events: none;
}

.sbrfq-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(23, 38, 79, 0.045) 46% 47%, transparent 47% 100%),
    radial-gradient(circle, rgba(23, 38, 79, 0.08) 1px, transparent 1px);
  background-size: 520px 520px, 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}

.sbrfq-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

.sbrfq-info-panel,
.sbrfq-form-panel {
  min-width: 0;
  border: 1px solid rgba(219, 228, 240, 0.95);
  background: var(--sbrfq-panel);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(23, 38, 79, 0.14);
  position: relative;
  overflow: hidden;
}

.sbrfq-info-panel {
  padding: clamp(28px, 4vw, 52px);
  border-left: 5px solid var(--sbrfq-purple);
}

.sbrfq-info-panel::before,
.sbrfq-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(150, 19, 196, 0.06), transparent 42%),
    linear-gradient(315deg, rgba(21, 158, 232, 0.055), transparent 44%);
  pointer-events: none;
}

.sbrfq-info-panel > *,
.sbrfq-form-panel > * {
  position: relative;
  z-index: 2;
}

.sbrfq-eyebrow,
.sbrfq-form-kicker,
.sbrfq-team-card > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--sbrfq-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.sbrfq-info-panel h2,
.sbrfq-form-panel h2 {
  margin: 0;
  color: var(--sbrfq-navy);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.sbrfq-form-panel h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin: 18px 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sbrfq-purple), var(--sbrfq-magenta));
  box-shadow: 0 8px 18px rgba(150, 19, 196, 0.2);
}

.sbrfq-lead {
  max-width: 620px;
  margin: 18px 0 24px;
  color: var(--sbrfq-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.sbrfq-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.sbrfq-feature {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--sbrfq-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(23, 38, 79, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.sbrfq-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(150, 19, 196, 0.35);
  box-shadow: 0 22px 42px rgba(23, 38, 79, 0.12);
}

.sbrfq-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sbrfq-soft);
  color: var(--sbrfq-purple);
  border: 1px solid rgba(150, 19, 196, 0.18);
}

.sbrfq-feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sbrfq-feature h3,
.sbrfq-team-card h3 {
  margin: 0 0 4px;
  color: var(--sbrfq-navy);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}

.sbrfq-feature p,
.sbrfq-team-card p {
  margin: 0;
  color: var(--sbrfq-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.sbrfq-team-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 0%, rgba(150, 19, 196, 0.38), transparent 35%),
    linear-gradient(135deg, var(--sbrfq-deep), var(--sbrfq-navy));
  color: #fff;
  box-shadow: 0 24px 54px rgba(23, 38, 79, 0.22);
}

.sbrfq-team-card h3,
.sbrfq-team-card p {
  color: #fff;
}

.sbrfq-team-card > span {
  color: #f09cff;
}

.sbrfq-contact-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sbrfq-contact-grid a {
  display: block;
  padding: 15px 16px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sbrfq-contact-grid a:hover {
  transform: translateX(5px);
  border-color: rgba(240, 156, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.sbrfq-contact-grid strong,
.sbrfq-contact-grid em {
  display: block;
}

.sbrfq-contact-grid strong {
  font-size: 14px;
  font-weight: 900;
}

.sbrfq-contact-grid em {
  margin-top: 6px;
  color: #f09cff;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.sbrfq-form-panel {
  padding: clamp(28px, 4vw, 48px);
  border-top: 5px solid var(--sbrfq-purple);
}

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

.sbrfq-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sbrfq-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--sbrfq-navy);
  font-size: 13px;
  font-weight: 900;
}

.sbrfq-field label span {
  color: #d62839;
}

.sbrfq-field input,
.sbrfq-field select,
.sbrfq-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--sbrfq-navy);
  font: 700 14px/1.4 "Oswald", Arial, sans-serif;
  border: 1px solid #d7e2ef;
  border-radius: 7px;
  background: #f8fafd;
  outline: none;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.sbrfq-field textarea {
  min-height: 132px;
  resize: vertical;
}

.sbrfq-field input::placeholder,
.sbrfq-field textarea::placeholder {
  color: #9aa7ba;
  opacity: 1;
}

.sbrfq-field input:hover,
.sbrfq-field select:hover,
.sbrfq-field textarea:hover {
  background: #fff;
  border-color: #c7d4e5;
}

.sbrfq-field input:focus,
.sbrfq-field select:focus,
.sbrfq-field textarea:focus {
  background: #fff;
  border-color: var(--sbrfq-purple);
  box-shadow: 0 0 0 4px rgba(150, 19, 196, 0.11);
}

.sbrfq-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sbrfq-purple) 50%),
    linear-gradient(135deg, var(--sbrfq-purple) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.sbrfq-upload-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 144px;
  padding: 24px 18px;
  text-align: center;
  border: 1px dashed #c9d5e6;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(150, 19, 196, 0.09), transparent 42%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sbrfq-upload-box:hover {
  transform: translateY(-2px);
  border-color: rgba(150, 19, 196, 0.55);
  box-shadow: 0 18px 34px rgba(23, 38, 79, 0.1);
}

.sbrfq-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sbrfq-upload-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 10px;
  color: var(--sbrfq-purple);
  background: var(--sbrfq-soft);
  border: 1px solid rgba(150, 19, 196, 0.18);
}

.sbrfq-upload-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sbrfq-upload-box strong {
  color: var(--sbrfq-navy);
  font-size: 16px;
  font-weight: 900;
}

.sbrfq-upload-box small,
.sbrfq-upload-box em {
  display: block;
  margin-top: 5px;
  color: var(--sbrfq-muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.sbrfq-file-summary {
  color: var(--sbrfq-purple) !important;
}

.sbrfq-submit {
  width: min(260px, 100%);
  min-height: 56px;
  padding: 15px 28px;
  border: 2px solid var(--sbrfq-purple);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(90deg, var(--sbrfq-purple), var(--sbrfq-magenta));
  box-shadow: 0 16px 34px rgba(150, 19, 196, 0.28);
  cursor: pointer;
  font: 900 15px/1 "Oswald", Arial, sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.sbrfq-submit:hover {
  transform: translateY(-3px);
  color: var(--sbrfq-purple);
  background: transparent;
  box-shadow: none;
}

.sbrfq-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.sbrfq-note {
  margin: -2px 0 0;
  color: var(--sbrfq-navy);
  font-size: 14px;
  font-weight: 700;
}

.sbrfq-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  background: #ecfdf3;
  font-size: 13px;
  font-weight: 800;
}

.sbrfq-trust-line span::before {
  content: "✓ ";
}

.sbrfq-alert {
  margin: 0 0 18px;
  padding: 14px 15px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.sbrfq-alert-success {
  color: #166534;
  border: 1px solid #bbf7d0;
  background: #ecfdf3;
}

.sbrfq-alert-error {
  color: #991b1b;
  border: 1px solid #fecaca;
  background: #fef2f2;
}

@media (max-width: 1024px) {
  .sbrfq-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sbrfq-section {
    padding: 24px 12px;
  }

  .sbrfq-info-panel,
  .sbrfq-form-panel {
    border-radius: 8px;
  }

  .sbrfq-info-panel,
  .sbrfq-form-panel {
    padding: 24px 18px;
  }

  .sbrfq-info-panel h2,
  .sbrfq-form-panel h2 {
    font-size: 34px;
  }

  .sbrfq-field-row,
  .sbrfq-feature {
    grid-template-columns: 1fr;
  }

  .sbrfq-feature {
    gap: 12px;
  }

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