/* ==========================================================================
   BUYER PROTECTION & TRUST VERIFICATION PAGE ARCHITECTURE
   ========================================================================== */
.tb-protection-page-wrapper {
  background-color: #f8fafc;
}

/* Hero Section */
.tb-security-hero-section {
  padding: 60px 0 30px 0;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.tb-security-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fee2e2;
  color: #991b1b;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #dc2626;
  border-radius: 50%;
  display: inline-block;
  animation: alertPulse 1.8s infinite ease-in-out;
}

@keyframes alertPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

.tb-security-hero-section h2 {
  font-size: 34px;
  color: #1e293b;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-lead-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* Protocols Layout Grid */
.tb-security-protocols-section {
  padding: 30px 0 60px 0;
}

.tb-protocols-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.tb-checklist-panel h3 {
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 6px;
  font-weight: 700;
}

.panel-subtitle {
  color: #64748b;
  margin-bottom: 30px;
}

.tb-security-rules-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rule-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-left: 4px solid #dc2626;
}

.rule-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff5f5;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rule-content h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #1e293b;
  font-weight: 700;
}

.rule-content p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Trust Personnel Layout Board */
.tb-trust-personnel-panel .trust-card-inner {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.shield-badge-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #446084;
  margin-bottom: 15px;
}

.shield-badge-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.tb-trust-personnel-panel p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.personnel-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.person-tag {
  background-color: #f1f5f9;
  color: #334155;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.person-tag i {
  color: #446084;
}

.trust-cta-note {
  background-color: #eff6ff;
  padding: 15px;
  border-radius: 6px;
  border: 1px dashed #bfdbfe;
}

.trust-cta-note p {
  margin: 0;
  color: #1e40af;
  font-weight: 500;
}

/* Missing Parts Inline Action Strip */
.tb-missing-parts-banner {
  background-color: #446084;
  color: #ffffff;
  padding: 30px 0;
}

.missing-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.missing-text-zone h3 {
  margin: 0 0 4px 0 !important;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 700;
}
.missing-text-zone p {
  margin: 0;
  color: #cbd5e1 !important;
  font-size: 15px;
}

.tb-phone-btn {
  background-color: #ffb703;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.tb-phone-btn:hover {
  background-color: #e5a100;
  color: #0f172a;
}

/* Split Forms Layout */
.tb-shipping-dual-forms {
  padding: 60px 0;
  background-color: #ffffff;
}

.tb-forms-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tb-form-block-wrapper {
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.tb-form-block-wrapper h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: #1e293b !important;
}
.tb-form-block-wrapper p {
  margin: 0 0 25px 0;
  color: #64748b !important;
  line-height: 1.5;
}

/* Dark Form Panel Visibility Fixes */
.tb-form-block-wrapper.newsletter-dark-bg {
  background-color: #1e293b !important;
  border-color: #0f172a !important;
}

.tb-form-block-wrapper.newsletter-dark-bg h3 {
  color: #ffffff !important;
}
.tb-form-block-wrapper.newsletter-dark-bg p {
  color: #cbd5e1 !important;
}

.tb-form-block-wrapper.newsletter-dark-bg input[type="text"],
.tb-form-block-wrapper.newsletter-dark-bg input[type="email"],
.tb-form-block-wrapper.newsletter-dark-bg textarea {
  background-color: #0f172a !important;
  border: 1px solid #334155 !important;
  color: #ffffff !important;
}

.tb-form-block-wrapper.newsletter-dark-bg input::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}
.tb-form-block-wrapper.newsletter-dark-bg input[type="submit"],
.tb-form-block-wrapper.newsletter-dark-bg button {
  background-color: #ffb703 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* Responsive Rules Engine */
@media (max-width: 991px) {
  .tb-protocols-grid,
  .missing-flex-wrapper,
  .tb-forms-split-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .missing-flex-wrapper {
    align-items: center;
  }
}
