/* ============================================================
   SIGNIA — Legal Guarantee Strip
   ============================================================ */

#legal-guarantee {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(200,169,102,0.07) 0%, rgba(200,169,102,0.03) 100%);
  border-top: 1px solid rgba(200,169,102,0.2);
  border-bottom: 1px solid rgba(200,169,102,0.2);
}

.legal-guarantee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.legal-guarantee-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(200,169,102,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(200,169,102,0.06);
}

.legal-guarantee-content {
  flex: 1;
  min-width: 260px;
}

.legal-guarantee-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.legal-guarantee-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
}

.legal-guarantee-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-guarantee-seal {
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .legal-guarantee-seal { display: none; }
  .legal-guarantee-inner { gap: 20px; }
}
