/* ============================================================
   Madrid FBI Fingerprints Page — Dedicated Stylesheet
   ============================================================ */

/* Page-level overrides */
body.madrid-fbi-page {
  background-color: #ffffff;
}

body.madrid-fbi-page main {
  background-color: #ffffff;
  padding: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.mfbi-hero {
  background-color: #ffffff;
  padding: 60px 0 24px;
  text-align: center;
}

.mfbi-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #b8bfc9;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 26px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.mfbi-hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  position: relative;
  animation: mfbi-pulse 2s ease-in-out infinite;
}

.mfbi-hero-pill-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2ecc71;
  animation: mfbi-pulse-ring 2s ease-out infinite;
}

@keyframes mfbi-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(46, 204, 113, 0); }
}

@keyframes mfbi-pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.mfbi-hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 800;
  color: #004c80;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto 22px;
}

.mfbi-highlight {
  position: relative;
  display: inline-block;
  color: #004c80;
  z-index: 0;
}

.mfbi-highlight::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 14px;
  background: #fce99b;
  border-radius: 3px;
  z-index: -1;
  opacity: 0.95;
}

.mfbi-hero-sub {
  font-size: 1.15rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.mfbi-hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mfbi-btn-primary {
  background-color: #004c80;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #004c80;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.mfbi-btn-primary:hover {
  background-color: #003a63;
  color: #fff;
  text-decoration: none;
}

.mfbi-btn-outline {
  background-color: transparent;
  color: #004c80;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #d8dde5;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
}

.mfbi-btn-outline:hover {
  background-color: #f4f6f9;
  color: #004c80;
  border-color: #c5ccd6;
  text-decoration: none;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.mfbi-stats {
  background-color: #ffffff;
  border-top: 1px solid #e0d8cf;
  border-bottom: 1px solid #e0d8cf;
  padding: 36px 0;
}

.mfbi-stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.mfbi-stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid #e0d8cf;
}

.mfbi-stat-item:last-child {
  border-right: none;
}

.mfbi-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #004c80;
  line-height: 1.1;
}

.mfbi-stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.mfbi-services {
  background-color: #ffffff;
  padding: 32px 0 24px;
}

.mfbi-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.mfbi-section-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #004c80;
  margin-bottom: 14px;
  line-height: 1.25;
}

.mfbi-section-intro {
  font-size: 0.97rem;
  color: #555;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.mfbi-service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.mfbi-service-card {
  flex: 1;
  min-width: 220px;
  border-radius: 16px;
  padding: 22px 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 76, 128, 0.10), 0 2px 6px rgba(0, 76, 128, 0.06);
  border: none;
  display: flex;
  flex-direction: column;
}

.mfbi-card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.mfbi-service-card h3 {
  padding-right: 40px;
}

.mfbi-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0) 55%);
}

.mfbi-service-card > *:not(.mfbi-card-icon) {
  position: relative;
  z-index: 1;
}

.mfbi-service-card.card-green {
  background: #b9d9b8;
}

.mfbi-service-card.card-peach {
  background: #f9c89b;
}

.mfbi-service-card.card-blue {
  background: #bcdcef;
}

.mfbi-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.card-green .mfbi-card-pill {
  background-color: #a8d5b5;
  color: #1a5c2e;
}

.card-peach .mfbi-card-pill {
  background-color: #f8c4a0;
  color: #7a3010;
}

.card-blue .mfbi-card-pill {
  background-color: #a9d2ed;
  color: #0d3a5c;
}

.mfbi-card-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.card-green .mfbi-card-pill-dot { background-color: #1a5c2e; }
.card-peach .mfbi-card-pill-dot { background-color: #7a3010; }
.card-blue .mfbi-card-pill-dot  { background-color: #0d3a5c; }

.mfbi-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #004c80;
  margin-bottom: 10px;
}

.mfbi-service-card p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.mfbi-card-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
  background-color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: auto;
  margin-bottom: 0;
  font-style: normal;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mfbi-service-card > p:not(.mfbi-card-tag) {
  margin-bottom: 18px;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.mfbi-how {
  background-color: #ffffff;
  padding: 32px 0 0;
}

.mfbi-row-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #004c80;
  margin: 48px 0 0;
  letter-spacing: -0.005em;
}

.mfbi-row-heading::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 22px;
  background: #004c80;
  border-radius: 3px;
}

.mfbi-row-heading-2 {
  margin-top: 64px;
}

.mfbi-step-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mfbi-step-card {
  position: relative;
  flex: 1;
  min-width: 180px;
  background-color: #fff;
  border-radius: 14px;
  padding: 16px 22px 22px;
  border: 1px solid #cfd9e6;
  box-shadow: 0 8px 22px rgba(0, 76, 128, 0.10), 0 2px 4px rgba(0, 76, 128, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mfbi-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #004c80, #2d7fb8);
}

.mfbi-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004c80 0%, #0a6aa8 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 76, 128, 0.25);
  letter-spacing: 0.02em;
}

.mfbi-step-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.mfbi-step-card p {
  font-size: 0.97rem;
  color: #5a6573;
  line-height: 1.6;
  margin: 0;
}

.mfbi-step-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-top: auto;
  color: #004c80;
  background-color: #eaf2f8;
  border: 1px solid #d6e4f0;
}

.mfbi-step-card p {
  margin-bottom: 16px;
}

.mfbi-step-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd60a;
  box-shadow: 0 0 0 2px rgba(255, 214, 10, 0.25);
}

.mfbi-notice-bar {
  background-color: #f5c842;
  border-radius: 10px;
  padding: 16px 24px;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #3d2e00;
  line-height: 1.55;
}

.mfbi-notice-bar-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.mfbi-pricing {
  background-color: #ffffff;
  padding: 72px 0 72px;
}

.mfbi-price-list {
  margin-top: 36px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6ebf1;
  box-shadow: 0 1px 2px rgba(15, 30, 50, 0.04), 0 10px 28px rgba(15, 30, 50, 0.05);
  overflow: hidden;
}

.mfbi-price-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 32px;
  border-bottom: 1px solid #eef1f4;
}

.mfbi-price-row:last-child {
  border-bottom: none;
}

.mfbi-price-row-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #f5c842;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}

.mfbi-price-row-main h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2740;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.mfbi-price-row-main p {
  font-size: 0.88rem;
  color: #5a6573;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

.mfbi-price-row-main .mfbi-price-note {
  margin-top: 12px;
}

.mfbi-price-row-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 24px;
  border-left: 1px solid #eef1f4;
  min-width: 140px;
  align-self: stretch;
}

.mfbi-price-row-amount {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #004c80 0%, #0a6aa8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mfbi-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 28px;
}

.mfbi-price-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border-radius: 16px;
  padding: 28px 22px 24px;
  border: 1px solid #e6ebf1;
  box-shadow: 0 1px 2px rgba(15, 30, 50, 0.04), 0 4px 12px rgba(15, 30, 50, 0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mfbi-price-card-header {
  margin-bottom: 8px;
  min-height: 48px;
}

.mfbi-price-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f2740;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.mfbi-price-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mfbi-price-badge.badge-green {
  background-color: #d4edda;
  color: #1a5c2e;
}

.mfbi-price-badge.badge-blue {
  background-color: #d6eaf8;
  color: #0d3a5c;
}

.mfbi-price-badge.badge-peach {
  background-color: #fde8d8;
  color: #7a3010;
}

.mfbi-price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #004c80;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #004c80 0%, #0a6aa8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mfbi-price-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #8a4a1f;
  background-color: #fff4e6;
  border: 1px solid #fde2c4;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 12px;
  margin-bottom: 0;
  align-self: flex-start;
}

.mfbi-price-note::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e89248;
  flex-shrink: 0;
}

.mfbi-price-turnaround {
  font-size: 0.78rem;
  color: #6b7785;
  font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef1f4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mfbi-price-turnaround::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7785' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.mfbi-price-desc {
  font-size: 0.82rem;
  color: #5a6573;
  line-height: 1.6;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #eef1f4;
}

.mfbi-price-convert {
  font-size: 0.8rem;
  color: #004c80;
  text-decoration: underline;
  cursor: pointer;
}

.mfbi-full-service-card {
  background-color: #004c80;
  border-radius: 14px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mfbi-full-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.mfbi-full-service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 560px;
  line-height: 1.55;
}

.mfbi-btn-yellow {
  background-color: #f5c842;
  color: #004c80;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
}

.mfbi-btn-yellow:hover {
  background-color: #e8b830;
  color: #004c80;
  text-decoration: none;
}

/* ============================================================
   RESOURCES SECTION
   ============================================================ */
.mfbi-resources {
  background-color: #ffffff;
  padding: 72px 0 56px;
  border-top: 1px solid #e0d8cf;
}

.mfbi-resource-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.mfbi-resource-card {
  flex: 1;
  min-width: 180px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e0d5;
  display: flex;
  flex-direction: column;
}

.mfbi-resource-thumb {
  height: 110px;
  background-color: #e0d8cf;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.4) 6px,
    rgba(255,255,255,0.4) 12px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfbi-resource-thumb-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 6px;
}

.mfbi-resource-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mfbi-resource-link {
  margin-top: auto;
  align-self: flex-start;
}

.mfbi-resource-topic {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.mfbi-resource-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #004c80;
  margin-bottom: 8px;
  line-height: 1.35;
}

.mfbi-resource-body p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 12px;
}

.mfbi-resource-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #004c80;
  text-decoration: underline;
}

.mfbi-resource-link:hover {
  color: #004c80;
  text-decoration: underline;
  opacity: 0.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.mfbi-contact {
  background-color: #ffffff;
  padding: 72px 0 80px;
  border-top: 1px solid #e0d8cf;
}

.mfbi-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.mfbi-contact-left h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #004c80;
  margin-bottom: 14px;
  line-height: 1.25;
}

.mfbi-contact-left p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.mfbi-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mfbi-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e0d8cf;
}

.mfbi-contact-info li:first-child {
  border-top: 1px solid #e0d8cf;
}

.mfbi-info-icon {
  width: 20px;
  flex-shrink: 0;
  color: #888;
  margin-top: 1px;
  font-size: 0.95rem;
}

.mfbi-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 2px;
}

.mfbi-info-value {
  font-size: 0.9rem;
  color: #004c80;
  font-weight: 500;
}

/* Form panel */
.mfbi-form-panel {
  background-color: #004c80;
  border-radius: 16px;
  padding: 36px 32px 40px;
}

.mfbi-form-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.mfbi-form-panel .mfbi-form-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.5;
}

.mfbi-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.mfbi-form input,
.mfbi-form select,
.mfbi-form textarea {
  width: 100%;
  background-color: #f1f3f5;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  padding: 12px 14px;
  color: #1a2a3a;
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  box-sizing: border-box;
}

.mfbi-form input::placeholder,
.mfbi-form textarea::placeholder {
  color: #7a8694;
}

.mfbi-form select {
  color: #7a8694;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a8694' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.mfbi-form select option {
  color: #1a2a3a;
  background: #fff;
}

.mfbi-form input:focus,
.mfbi-form select:focus,
.mfbi-form textarea:focus {
  border-color: #f5c842;
  background-color: #ffffff;
}

#mfbi-form-status {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
}

.mfbi-form textarea {
  resize: vertical;
  min-height: 100px;
}

.mfbi-form-submit {
  width: 100%;
  padding: 14px;
  background-color: #f5c842;
  color: #004c80;
  border: none;
  border-radius: 8px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s;
  margin-top: 6px;
}

.mfbi-form-submit:hover {
  background-color: #e8b830;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .mfbi-service-cards {
    flex-direction: column;
  }

  .mfbi-step-cards {
    flex-direction: column;
  }

  .mfbi-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mfbi-price-row {
    grid-template-columns: 36px 1fr auto;
    gap: 16px;
    padding: 22px 22px;
  }

  .mfbi-price-row-num {
    font-size: 1.25rem;
  }

  .mfbi-price-row-price {
    padding-left: 16px;
    min-width: 100px;
  }

  .mfbi-price-row-amount {
    font-size: 1.8rem;
  }

  .mfbi-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mfbi-full-service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .mfbi-resource-cards {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mfbi-hero {
    padding: 60px 0 44px;
  }

  .mfbi-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .mfbi-btn-primary,
  .mfbi-btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .mfbi-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mfbi-price-list {
    margin-top: 24px;
    border-radius: 14px;
  }

  .mfbi-price-row {
    grid-template-columns: 1fr 80px;
    gap: 4px 14px;
    padding: 18px 16px;
    align-items: center;
  }

  .mfbi-price-row-num {
    display: none;
  }

  .mfbi-price-row-main {
    min-width: 0;
  }

  .mfbi-price-row-main h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.25;
  }

  .mfbi-price-row-main p {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #6b7280;
  }

  .mfbi-price-row-main .mfbi-price-note {
    margin-top: 10px;
    font-size: 0.65rem;
    padding: 4px 8px;
    line-height: 1.3;
  }

  .mfbi-price-row-price {
    padding-left: 14px;
    border-left: 1px solid #eef1f4;
    min-width: 0;
    align-self: stretch;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .mfbi-price-row-amount {
    font-size: 1.5rem;
    white-space: nowrap;
  }

  .mfbi-stat-item {
    border-right: none;
    border-bottom: 1px solid #e0d8cf;
  }

  .mfbi-stat-item:nth-child(odd) {
    border-right: 1px solid #e0d8cf;
  }

  .mfbi-stat-item:nth-child(3),
  .mfbi-stat-item:nth-child(4) {
    border-bottom: none;
  }

  .mfbi-form-row {
    grid-template-columns: 1fr;
  }

  .mfbi-form-panel {
    padding: 28px 22px 32px;
  }

  .mfbi-full-service-card {
    padding: 24px 22px;
  }

  .mfbi-services,
  .mfbi-how,
  .mfbi-pricing,
  .mfbi-resources,
  .mfbi-contact {
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .mfbi-hero h1 {
    margin-bottom: 16px;
  }

  .mfbi-hero-sub {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .mfbi-row-heading {
    font-size: 1.1rem;
    margin: 36px 0 0;
  }

  .mfbi-row-heading-2 {
    margin-top: 48px;
  }

  .mfbi-step-card p {
    font-size: 0.92rem;
  }

  .mfbi-upload {
    padding: 48px 0;
  }

  .mfbi-upload-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 22px;
    border-radius: 16px;
  }

  .mfbi-upload-left h2 {
    font-size: 1.5rem;
  }

  .mfbi-upload-form .mfbi-form-row {
    grid-template-columns: 1fr;
  }

  .mfbi-form-panel {
    padding: 26px 20px 30px;
  }

  .mfbi-info-value {
    word-break: break-word;
  }

  .mfbi-section-headline br {
    display: none;
  }
}

/* ============================================================
   ALREADY HAVE FBI CHECK — UPLOAD SECTION
   ============================================================ */
.mfbi-upload {
  background-color: #ffffff;
  padding: 72px 0;
}

.mfbi-upload-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: linear-gradient(140deg, #004c80 0%, #00365c 100%);
  border-radius: 20px;
  padding: 56px 52px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 76, 128, 0.25);
}

.mfbi-upload-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 8px 0 16px;
}

.mfbi-upload-left > p {
  color: #d8e3ee;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.mfbi-upload-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mfbi-upload-bullets li {
  position: relative;
  padding-left: 26px;
  color: #d8e3ee;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.mfbi-upload-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  background-color: #f5c842;
  color: #00365c;
  border-radius: 50%;
}

.mfbi-upload-form .mfbi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.mfbi-upload-form input[type="text"],
.mfbi-upload-form input[type="email"],
.mfbi-upload-form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color 0.2s, background-color 0.2s;
}

.mfbi-upload-form textarea {
  resize: vertical;
  min-height: 90px;
}

.mfbi-upload-form input::placeholder,
.mfbi-upload-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.mfbi-upload-form input:focus,
.mfbi-upload-form textarea:focus {
  outline: none;
  border-color: #f5c842;
  background-color: rgba(255, 255, 255, 0.14);
}

.mfbi-file-wrapper {
  margin-bottom: 12px;
}

.mfbi-file-label {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 18px 18px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.mfbi-file-label:hover {
  background-color: rgba(255, 255, 255, 0.13);
  border-color: #f5c842;
}

.mfbi-file-label.has-file {
  background-color: rgba(245, 200, 66, 0.15);
  border-color: #f5c842;
  border-style: solid;
}

.mfbi-file-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.mfbi-file-text {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.4;
}

.mfbi-file-text strong {
  font-weight: 700;
}

.mfbi-file-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.mfbi-file-name {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
}

.mfbi-upload-form input[type="file"] {
  display: none;
}

.mfbi-upload-form .mfbi-form-submit {
  width: 100%;
  background-color: #f5c842;
  color: #00365c;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 4px;
}

.mfbi-upload-form .mfbi-form-submit:hover:not(:disabled) {
  background-color: #f0bb20;
}

.mfbi-upload-form .mfbi-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .mfbi-upload {
    padding: 48px 0;
  }
  .mfbi-upload-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
    border-radius: 16px;
  }
  .mfbi-upload-left h2 {
    font-size: 1.4rem;
  }
  .mfbi-upload-form .mfbi-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.mfbi-faq {
  background-color: #ffffff;
  padding: 56px 0 72px;
}

.mfbi-faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mfbi-faq-item {
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 30, 50, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mfbi-faq-item[open] {
  border-color: #d6dde6;
  box-shadow: 0 4px 14px rgba(15, 30, 50, 0.06);
}

.mfbi-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f2740;
  position: relative;
  line-height: 1.4;
  user-select: none;
}

.mfbi-faq-item summary::-webkit-details-marker {
  display: none;
}

.mfbi-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: #004c80;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mfbi-faq-item[open] summary::after {
  content: "–";
}

.mfbi-faq-answer {
  padding: 0 22px 20px;
  color: #4a5563;
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.mfbi-faq-answer a {
  color: #004c80;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mfbi-faq {
    padding: 40px 0 48px;
  }

  .mfbi-faq-list {
    margin-top: 24px;
    gap: 10px;
  }

  .mfbi-faq-item summary {
    font-size: 0.95rem;
    padding: 16px 48px 16px 18px;
  }

  .mfbi-faq-item summary::after {
    right: 18px;
    font-size: 1.25rem;
  }

  .mfbi-faq-answer {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }
}
