:root {
  --rsfcp-bg: #061728;
  --rsfcp-bg-deep: #04111d;
  --rsfcp-panel: #101d29;
  --rsfcp-field: #182637;
  --rsfcp-hero: #0b2848;
  --rsfcp-border: #2b4358;
  --rsfcp-text: #f4f7fb;
  --rsfcp-muted: #b8c6d4;
  --rsfcp-blue: #3e7eab;
  --rsfcp-blue-hover: #4d91c0;
  --rsfcp-gold: #d7a73e;
  --rsfcp-success: #143f2b;
  --rsfcp-danger: #5a2930;
}

body.rsfcp-managed-page,
body.rsfcp-managed-page .site,
body.rsfcp-managed-page .site-content,
body.rsfcp-managed-page .content-area,
body.rsfcp-managed-page main,
body.rsfcp-managed-page .entry-content {
  background: var(--rsfcp-bg) !important;
}

body.rsfcp-managed-page .entry-title,
body.rsfcp-managed-page .page-title {
  display: none !important;
}

body.rsfcp-managed-page .site-content,
body.rsfcp-managed-page .ast-container,
body.rsfcp-managed-page .entry-content {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.rsfcp-shell,
.rsfcp-shell * {
  box-sizing: border-box;
}

.rsfcp-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 70px;
  color: var(--rsfcp-text);
  font-family: inherit;
}

.rsfcp-hero,
.rsfcp-panel,
.rsfcp-info-card,
.rsfcp-info-note,
.rsfcp-cta-panel,
.rsfcp-message {
  border: 1px solid var(--rsfcp-border);
  border-radius: 14px;
}

.rsfcp-hero {
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(135deg, #0c2a4b, #0a213b);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.rsfcp-kicker {
  display: block;
  margin-bottom: 12px;
  color: #c8d9eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.rsfcp-hero h1,
.rsfcp-panel h2,
.rsfcp-cta-panel h2 {
  margin: 0;
  color: var(--rsfcp-text);
  line-height: 1.15;
}

.rsfcp-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.rsfcp-hero p,
.rsfcp-section-heading p,
.rsfcp-cta-panel p,
.rsfcp-info-note p {
  margin: 10px 0 0;
  color: var(--rsfcp-muted);
  line-height: 1.65;
}

.rsfcp-panel {
  margin-top: 20px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--rsfcp-panel);
}

.rsfcp-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.rsfcp-step {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--rsfcp-blue);
  color: white;
  font-weight: 800;
}

.rsfcp-accordion {
  display: grid;
  gap: 12px;
}

.rsfcp-faq-item {
  overflow: hidden;
  border: 1px solid var(--rsfcp-border);
  border-radius: 10px;
  background: var(--rsfcp-field);
}

.rsfcp-faq-item h3 {
  margin: 0;
}

.rsfcp-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--rsfcp-text);
  text-align: left;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.rsfcp-faq-question:hover,
.rsfcp-faq-question:focus-visible {
  background: rgba(62, 126, 171, .16);
  outline: none;
}

.rsfcp-plus {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid #6e8da7;
  border-radius: 50%;
  color: #d9e8f5;
  font-size: 22px;
  line-height: 1;
}

.rsfcp-faq-answer {
  padding: 0 20px 20px;
  color: var(--rsfcp-muted);
  line-height: 1.75;
}

.rsfcp-faq-answer p {
  margin: 0;
}

.rsfcp-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 26px;
  background: #0c2235;
}

.rsfcp-primary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--rsfcp-blue);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.rsfcp-primary-button:hover,
.rsfcp-primary-button:focus-visible {
  background: var(--rsfcp-blue-hover);
  transform: translateY(-1px);
  outline: none;
}

.rsfcp-contact-grid {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.6fr);
  gap: 20px;
  margin-top: 20px;
}

.rsfcp-contact-details {
  display: grid;
  align-content: start;
  gap: 12px;
}

.rsfcp-info-card,
.rsfcp-info-note {
  padding: 20px;
  background: var(--rsfcp-panel);
  color: var(--rsfcp-text);
}

.rsfcp-info-label {
  display: block;
  margin-bottom: 7px;
  color: var(--rsfcp-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rsfcp-info-card a {
  color: #8fc6ef;
  overflow-wrap: anywhere;
}

.rsfcp-placeholder {
  color: #d7bf82;
  font-style: italic;
}

.rsfcp-contact-form-panel {
  margin-top: 0;
}

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

.rsfcp-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--rsfcp-text);
  font-weight: 700;
}

.rsfcp-span-two {
  grid-column: 1 / -1;
}

.rsfcp-contact-form input,
.rsfcp-contact-form select,
.rsfcp-contact-form textarea {
  width: 100%;
  border: 1px solid #39536c;
  border-radius: 8px;
  background: var(--rsfcp-field);
  color: var(--rsfcp-text);
  font: inherit;
}

.rsfcp-contact-form input,
.rsfcp-contact-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.rsfcp-contact-form textarea {
  min-height: 145px;
  padding: 12px;
  resize: vertical;
}

.rsfcp-contact-form input:focus,
.rsfcp-contact-form select:focus,
.rsfcp-contact-form textarea:focus {
  border-color: #72a9d0;
  outline: 3px solid rgba(78, 145, 192, .24);
}

.rsfcp-contact-form ::placeholder {
  color: #a9b9c9;
  opacity: 1;
}

.rsfcp-contact-form .rsfcp-primary-button {
  margin-top: 18px;
}

.rsfcp-form-privacy {
  margin: 12px 0 0;
  color: var(--rsfcp-muted);
  font-size: 13px;
}

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

.rsfcp-message {
  margin-top: 20px;
  padding: 18px 20px;
  line-height: 1.55;
}

.rsfcp-message-success {
  border-color: #387554;
  background: var(--rsfcp-success);
}

.rsfcp-message-error {
  border-color: #9f5861;
  background: var(--rsfcp-danger);
}

@media (max-width: 780px) {
  .rsfcp-shell {
    width: min(100% - 20px, 1180px);
    margin-top: 16px;
  }

  .rsfcp-contact-grid,
  .rsfcp-form-grid {
    grid-template-columns: 1fr;
  }

  .rsfcp-span-two {
    grid-column: auto;
  }

  .rsfcp-cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .rsfcp-primary-button {
    width: 100%;
  }
}
